diff --git a/tests/Database/Functional/Driver/Common/Query/SelectQueryTest.php b/tests/Database/Functional/Driver/Common/Query/SelectQueryTest.php index 81dbe24f..68d09a84 100644 --- a/tests/Database/Functional/Driver/Common/Query/SelectQueryTest.php +++ b/tests/Database/Functional/Driver/Common/Query/SelectQueryTest.php @@ -2519,7 +2519,7 @@ public function testAndWhereNotWithArrayOr(): void ->andWhereNot([ '@or' => [ ['id' => ['between' => [10, 100]], 'name' => 'John Doe'], - ['status' => 'disabled'] + ['status' => 'disabled'], ] ]); @@ -2538,7 +2538,7 @@ public function testAndWhereNotWithArrayAnd(): void ->andWhereNot([ '@and' => [ ['id' => ['between' => [10, 100]], 'name' => 'John Doe'], - ['status' => 'disabled'] + ['status' => 'disabled'], ] ]); @@ -2557,7 +2557,7 @@ public function testOrWhereNotWithArrayOr(): void ->orWhereNot([ '@or' => [ ['id' => ['between' => [10, 100]], 'name' => 'John Doe'], - ['status' => 'disabled'] + ['status' => 'disabled'], ] ]); @@ -2576,7 +2576,7 @@ public function testOrWhereNotWithArrayAnd(): void ->orWhereNot([ '@and' => [ ['id' => ['between' => [10, 100]], 'name' => 'John Doe'], - ['status' => 'disabled'] + ['status' => 'disabled'], ] ]);