From 06313c7e7b1a4e4a2116eb9624051f38987f5e36 Mon Sep 17 00:00:00 2001 From: Julian Nguyen <109386615+juliannguyen4@users.noreply.github.com> Date: Mon, 23 Sep 2024 12:22:47 -0700 Subject: [PATCH] Finish basic usage test --- test/new_tests/test_mrt.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) 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