From 4196e52ffa00bd92c000c159b9bd7434aa0b7b21 Mon Sep 17 00:00:00 2001 From: Daniel Hornung <d.hornung@indiscale.com> Date: Tue, 21 Jun 2022 22:10:57 +0200 Subject: [PATCH] FIX: Fixed typo in test_int() --- tests/test_query.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_query.py b/tests/test_query.py index 403aa0a..ab9600e 100644 --- a/tests/test_query.py +++ b/tests/test_query.py @@ -895,7 +895,7 @@ def test_int(): "FIND TestRecordType WITH TestDoubleProperty>=100.5", unique=True) db.execute_query( - "FIND TestRecordType WITH TestDoubleProperty>=100.5", + "FIND TestRecordType WITH TestDoubleProperty=100.5", unique=True) db.execute_query( "FIND TestRecordType WITH TestDoubleProperty<=100.5", -- GitLab