From b8c1a671fab4f08e6ba77628bdd3fa7b84c91e54 Mon Sep 17 00:00:00 2001 From: larkee <31196561+larkee@users.noreply.github.com> Date: Wed, 13 May 2020 19:07:05 +1200 Subject: [PATCH] test: remove unneeded system test skip when using emulator (#80) Co-authored-by: larkee --- tests/system/test_system.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/system/test_system.py b/tests/system/test_system.py index 210ab3fecc..9d1dc383ba 100644 --- a/tests/system/test_system.py +++ b/tests/system/test_system.py @@ -2330,7 +2330,6 @@ def test_execute_sql_returning_transfinite_floats(self): # NaNs cannot be searched for by equality. self.assertTrue(math.isnan(float_array[2])) - @unittest.skipIf(USE_EMULATOR, "Skipping partitioned queries") def test_partition_query(self): row_count = 40 sql = "SELECT * FROM {}".format(self.TABLE)