From 4c64b10aecc7231ec16256f02b36f2938ac54774 Mon Sep 17 00:00:00 2001 From: Bojan Serafimov Date: Wed, 16 Feb 2022 17:58:45 -0500 Subject: [PATCH] Revert removal of ignore hint --- test_runner/batch_others/test_twophase.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test_runner/batch_others/test_twophase.py b/test_runner/batch_others/test_twophase.py index d6a1cd01e8..385e47695e 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', )] + assert cur2.fetchall() == [('one', ), ('three', )] # type: ignore[comparison-overlap] # Only one committed insert is visible on the original branch cur.execute('SELECT * FROM foo') - assert cur.fetchall() == [('three', )] + assert cur.fetchall() == [('three', )] # type: ignore[comparison-overlap]