We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7507647 commit 4e90faeCopy full SHA for 4e90fae
tests/nuodb_cursor_test.py
@@ -129,7 +129,7 @@ def test_executemany_somefail(self):
129
130
def test_result_set_gets_closed(self):
131
current_version = getenv('NUODB_VERSION', None) # skipif <2.1
132
- if current_version is not None and LooseVersion(current_version) < LooseVersion("2.1"):
+ if current_version is not None and not LooseVersion(current_version) < LooseVersion("2.1"):
133
# Server will throw error after 1000 open result sets
134
con = self._connect()
135
for j in [False, True]:
0 commit comments