Skip to content
Snippets Groups Projects
Commit c352b40c authored by florian's avatar florian
Browse files

FIX: Use correct transaction variable

parent 1f3ff733
No related branches found
No related tags found
1 merge request!3ENH: Test queries and entity retrieval
Pipeline #12159 failed
...@@ -99,10 +99,10 @@ end ...@@ -99,10 +99,10 @@ end
# COUNT queries have to be conducted manually # COUNT queries have to be conducted manually
count_transaction = create_transaction() count_transaction = create_transaction()
add_query(transaction, "COUNT ENTITY WITH id=-1") add_query(count_transaction, "COUNT ENTITY WITH id=-1")
execute(transaction) execute(count_transaction)
# Still an empty result set # Still an empty result set
@test get_count_result(transaction) == 0 @test get_count_result(count_transaction) == 0
end end
@testset "Test entity retrieval" begin @testset "Test entity retrieval" begin
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment