Skip to content

Commit 80ad867

Browse files
authored
test: fix Tarantool version for ACCESS_DENIED user field check (#95)
Currently this test fails in Tarantool 3.0 branch. Need for tarantool/tarantool#9108
1 parent 1868ebe commit 80ad867

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/Integration/BoxErrorTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ public function testExceptionWithErrorIsThrown() : void
6464
'access_type' => 'Write',
6565
'user' => 'user_with_no_privileges',
6666
];
67-
if ($this->tarantoolVersionSatisfies('<= 3.0')) {
67+
if ($this->tarantoolVersionSatisfies('< 3.1')) {
6868
unset($expectedFields['user']);
6969
}
7070
self::assertEquals($expectedFields, $error->getFields());

0 commit comments

Comments
 (0)