Skip to content
Snippets Groups Projects
Commit 09e53d63 authored by Henrik tom Wörden's avatar Henrik tom Wörden
Browse files

FIX: fix failing test; use of test is unclear

parent faab9ca4
No related branches found
No related tags found
No related merge requests found
......@@ -204,9 +204,9 @@ def test_query3():
"query": None}, reconnect=True).read()
print(body)
xml = etree.fromstring(body)
assert_equals(2, len(xml))
assert_equals("query", xml[0].tag.lower())
assert_equals("transactionbenchmark", xml[1].tag.lower())
assert_equals(3, len(xml))
assert_equals("query", xml[1].tag.lower())
assert_equals("transactionbenchmark", xml[2].tag.lower())
@with_setup(setup, teardown)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment