Skip to content

Commit 3421257

Browse files
committed
fix
1 parent c983271 commit 3421257

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

.github/workflows/actions.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@ jobs:
2222
tarantool: '2.8.4'
2323
- python-version: 'pypy3.10'
2424
tarantool: '2.10.8'
25-
- python-version: 'pypy3.10'
26-
tarantool: '2.11.2'
2725

2826
runs-on: ${{ matrix.os }}
2927

tests/test_connect.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -753,7 +753,7 @@ async def test__connect_invalid_user_no_reconnect(self):
753753
await conn.connect()
754754

755755
err_code = ErrorCode.ER_PASSWORD_MISMATCH
756-
if version < (2, 11):
756+
if version < (2, 10):
757757
err_code = ErrorCode.ER_NO_SUCH_USER
758758
self.assertEqual(e.exception.code, err_code)
759759

0 commit comments

Comments
 (0)