From f824c996b3089539dbcb3b55888038dd75b08ea2 Mon Sep 17 00:00:00 2001 From: Ahmet Gedemenli Date: Wed, 28 Dec 2022 18:18:24 +0300 Subject: [PATCH] Remove duplicate split entry in run_test.py (#6586) Nothing important. Removing the duplicate `"split" in test_schedule` check --- src/test/regress/citus_tests/run_test.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/test/regress/citus_tests/run_test.py b/src/test/regress/citus_tests/run_test.py index 750029cf8..0a3c643ea 100755 --- a/src/test/regress/citus_tests/run_test.py +++ b/src/test/regress/citus_tests/run_test.py @@ -90,8 +90,6 @@ elif "mx" in test_schedule: test_schedule = 'mx_minimal_schedule' elif "operations" in test_schedule: test_schedule = 'minimal_schedule' -elif "split" in test_schedule: - test_schedule = 'minimal_schedule' elif test_schedule in config.ARBITRARY_SCHEDULE_NAMES: print(f"WARNING: Arbitrary config schedule ({test_schedule}) is not supported.") sys.exit(0)