From c352b40c1191d0764002cce767d0c7d87452292b Mon Sep 17 00:00:00 2001
From: florian <f.spreckelsen@inidscale.com>
Date: Tue, 17 Aug 2021 11:39:13 +0200
Subject: [PATCH] FIX: Use correct transaction variable

---
 test/runtests.jl | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/test/runtests.jl b/test/runtests.jl
index ed28a69..66c86a7 100644
--- a/test/runtests.jl
+++ b/test/runtests.jl
@@ -99,10 +99,10 @@ end
 
         # COUNT queries have to be conducted manually
         count_transaction = create_transaction()
-        add_query(transaction, "COUNT ENTITY WITH id=-1")
-        execute(transaction)
+        add_query(count_transaction, "COUNT ENTITY WITH id=-1")
+        execute(count_transaction)
         # Still an empty result set
-        @test get_count_result(transaction) == 0
+        @test get_count_result(count_transaction) == 0
     end
 
     @testset "Test entity retrieval" begin
-- 
GitLab