We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c983271 commit 3421257Copy full SHA for 3421257
.github/workflows/actions.yaml
@@ -22,8 +22,6 @@ jobs:
22
tarantool: '2.8.4'
23
- python-version: 'pypy3.10'
24
tarantool: '2.10.8'
25
- - python-version: 'pypy3.10'
26
- tarantool: '2.11.2'
27
28
runs-on: ${{ matrix.os }}
29
tests/test_connect.py
@@ -753,7 +753,7 @@ async def test__connect_invalid_user_no_reconnect(self):
753
await conn.connect()
754
755
err_code = ErrorCode.ER_PASSWORD_MISMATCH
756
- if version < (2, 11):
+ if version < (2, 10):
757
err_code = ErrorCode.ER_NO_SUCH_USER
758
self.assertEqual(e.exception.code, err_code)
759
0 commit comments