From 38d0735ad2d6c9c4b50caec3e14a35c082f97735 Mon Sep 17 00:00:00 2001 From: Julian Nguyen <109386615+juliannguyen4@users.noreply.github.com> Date: Wed, 11 Dec 2024 13:19:56 -0800 Subject: [PATCH] disable other check --- test/new_tests/test_mrt_functionality.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/new_tests/test_mrt_functionality.py b/test/new_tests/test_mrt_functionality.py index 6e5b040a9..997e678b9 100644 --- a/test/new_tests/test_mrt_functionality.py +++ b/test/new_tests/test_mrt_functionality.py @@ -18,8 +18,8 @@ def setup_class(cls): def insert_or_update_records(self, as_connection): # if (TestBaseClass.major_ver, TestBaseClass.minor_ver) < (8, 0): # pytest.skip("MRT is only supported in server version 8.0 or higher") - if TestBaseClass.strong_consistency_enabled is False: - pytest.skip("Strong consistency is not enabled") + # if TestBaseClass.strong_consistency_enabled is False: + # pytest.skip("Strong consistency is not enabled") for i, key in enumerate(self.keys): self.as_connection.put(key, {self.bin_name: i})