Skip to content

Commit

Permalink
Apply fixes from StyleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
StyleCIBot committed Jan 16, 2023
1 parent 7fa2ef5 commit af53059
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/LaravelGoogleAnalyticsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ public function it_should_filter_dimension_with_and_group()
$result = $this->analytics
->whereAndGroupDimensions([
['browser', MatchType::CONTAINS, 'firefox'],
['browser', MatchType::CONTAINS, 'chrome']
['browser', MatchType::CONTAINS, 'chrome'],
])
->get();

Expand All @@ -110,7 +110,7 @@ public function it_should_filter_dimension_with_or_group()
$result = $this->analytics
->whereOrGroupDimensions([
['browser', MatchType::CONTAINS, 'firefox'],
['browser', MatchType::CONTAINS, 'chrome']
['browser', MatchType::CONTAINS, 'chrome'],
])
->get();

Expand Down

0 comments on commit af53059

Please sign in to comment.