From 27c5b2a808bc516560fcbb5cf05a7620550f5153 Mon Sep 17 00:00:00 2001 From: Shane Harvey Date: Mon, 12 Jul 2021 16:52:19 -0700 Subject: [PATCH] PYTHON-2807 Skip OP_KILL_CURSORS test on 5.0+ --- test/test_legacy_api.py | 1 + 1 file changed, 1 insertion(+) diff --git a/test/test_legacy_api.py b/test/test_legacy_api.py index 1978148909..8a27f075f2 100644 --- a/test/test_legacy_api.py +++ b/test/test_legacy_api.py @@ -1374,6 +1374,7 @@ def raises_cursor_not_found(): wait_until(raises_cursor_not_found, 'close cursor') + @client_context.require_version_max(4, 9, 99) # SERVER-57457 def test_kill_cursors_with_tuple(self): # Some evergreen distros (Debian 7.1) still test against 3.6.5 where # OP_KILL_CURSORS does not work.