diff --git a/bindings/bindingtester/tests/scripted.py b/bindings/bindingtester/tests/scripted.py index a4d0509ceb..a04c21f180 100644 --- a/bindings/bindingtester/tests/scripted.py +++ b/bindings/bindingtester/tests/scripted.py @@ -34,11 +34,10 @@ fdb.api_version(FDB_API_VERSION) class ScriptedTest(Test): - MIN_API_VERSION = 500 TEST_API_VERSION = 520 def __init__(self, subspace): - super(ScriptedTest, self).__init__(subspace, ScriptedTest.MIN_API_VERSION, ScriptedTest.TEST_API_VERSION) + super(ScriptedTest, self).__init__(subspace, ScriptedTest.TEST_API_VERSION, ScriptedTest.TEST_API_VERSION) self.workspace = self.subspace['workspace'] self.results_subspace = self.subspace['results'] # self.thread_subspace = self.subspace['threads'] # TODO: update START_THREAD so that we can create threads in subspaces