Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: othercorey <corey.taylor.fl@gmail.com>
  • Loading branch information
markstory and othercorey committed Nov 22, 2020
1 parent 8dbb40b commit c2d3508
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php-version: ['7.2', '7.4']
php-version: ['7.2', '7.4', '8.0']
prefer-lowest: ['']
include:
- php-version: '7.2'
Expand Down
2 changes: 1 addition & 1 deletion tests/TestCase/QueryBuilderTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -513,7 +513,7 @@ public function testScript()
// The result varies a bit depending on the elasticsearch driver versions.
$this->assertArrayHasKey('script', $data);
$this->assertArrayHasKey('script', $data['script']);
$this->assertEquals(["doc['foo'] > 2"], array_values($data['script']['script']));
$this->assertSame(["doc['foo'] > 2"], array_values($data['script']['script']));
}

/**
Expand Down

0 comments on commit c2d3508

Please sign in to comment.