Skip to content

Commit

Permalink
track_authenticated_users is false by default
Browse files Browse the repository at this point in the history
  • Loading branch information
sjinks committed Dec 24, 2024
1 parent 69a54fe commit 828011d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/parsely/test-mu-parsely-integration.php
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ public function test_default_parsely_configs() {
'have_api_secret' => false,
'is_javascript_disabled' => false,
'is_autotracking_disabled' => false,
'should_track_logged_in_users' => is_latest_version() ? false : true,
'should_track_logged_in_users' => false,
'tracked_post_types' => array(
array(
'name' => 'post',
Expand Down Expand Up @@ -343,7 +343,7 @@ public function test_parsely_configs_for_managed_mode() {
'have_api_secret' => is_latest_version() ? true : false,
'is_javascript_disabled' => false,
'is_autotracking_disabled' => false,
'should_track_logged_in_users' => is_latest_version() ? false : true,
'should_track_logged_in_users' => false,
'tracked_post_types' => array(
array(
'name' => 'post',
Expand Down

0 comments on commit 828011d

Please sign in to comment.