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(): ...@@ -204,9 +204,9 @@ def test_query3():
"query": None}, reconnect=True).read() "query": None}, reconnect=True).read()
print(body) print(body)
xml = etree.fromstring(body) xml = etree.fromstring(body)
assert_equals(2, len(xml)) assert_equals(3, len(xml))
assert_equals("query", xml[0].tag.lower()) assert_equals("query", xml[1].tag.lower())
assert_equals("transactionbenchmark", xml[1].tag.lower()) assert_equals("transactionbenchmark", xml[2].tag.lower())
@with_setup(setup, teardown) @with_setup(setup, teardown)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment