diff --git a/test_runner/batch_others/test_twophase.py b/test_runner/batch_others/test_twophase.py index 385e47695e..d6a1cd01e8 100644 --- a/test_runner/batch_others/test_twophase.py +++ b/test_runner/batch_others/test_twophase.py @@ -78,8 +78,8 @@ def test_twophase(zenith_simple_env: ZenithEnv): cur2.execute("ROLLBACK PREPARED 'insert_two'") cur2.execute('SELECT * FROM foo') - assert cur2.fetchall() == [('one', ), ('three', )] # type: ignore[comparison-overlap] + assert cur2.fetchall() == [('one', ), ('three', )] # Only one committed insert is visible on the original branch cur.execute('SELECT * FROM foo') - assert cur.fetchall() == [('three', )] # type: ignore[comparison-overlap] + assert cur.fetchall() == [('three', )]