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 0c89f80 commit 278e4dd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/parsely.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
matrix:
config:
# Oldest version of the parsely plugin
- { wp: latest, parsely: '3.16', mode: 'filter_enabled', php: '8.1' }
- { wp: latest, parsely: '3.15', mode: 'filter_enabled', php: '8.1' }
- { wp: latest, parsely: '3.15', mode: 'filter_disabled', php: '8.1' }

# Latest version of the parsely plugin
Expand Down
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 278e4dd

Please sign in to comment.