diff --git a/test/new_tests/test_mrt.py b/test/new_tests/test_mrt.py index 26da3a070..a982d1abd 100644 --- a/test/new_tests/test_mrt.py +++ b/test/new_tests/test_mrt.py @@ -89,6 +89,10 @@ def test_basic_usage(self, requires_server_mrt_support): bins = {"a": 1} key2 = ("test", "demo", 2) self.as_connection.put(key, bins, policy) - self.as_connection.get(key2, policy) - + self.as_connection.put(key2, bins, policy) self.as_connection.commit(mrt) + + # Did it work? + for key in [key, key2]: + _, _, bins = self.as_connection.get(key) + assert bins["a"] == 1