From 8e4c9c88d4dc7697ac510425300bffd759fee3ff Mon Sep 17 00:00:00 2001 From: Philip O'Toole Date: Sat, 3 Feb 2024 11:51:24 -0500 Subject: [PATCH] Fix test --- system_test/e2e/auto_state.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system_test/e2e/auto_state.py b/system_test/e2e/auto_state.py index 2d16a07e..1b0a4736 100644 --- a/system_test/e2e/auto_state.py +++ b/system_test/e2e/auto_state.py @@ -150,7 +150,7 @@ class TestAutoRestoreS3(unittest.TestCase): n0.start() n0.wait_for_ready() n0.execute('CREATE TABLE bar (id INTEGER NOT NULL PRIMARY KEY, name TEXT)') - j = n1.query('SELECT * FROM bar', level='strong') + j = n0.query('SELECT * FROM bar', level='strong') self.assertEqual(j, d_("{'results': [{'types': ['integer', 'text'], 'columns': ['id', 'name']}]}")) n0.stop()