From 894c763763f77f06eaa964c965671afd951b0b5f Mon Sep 17 00:00:00 2001
From: fspreck <f.spreckelsen@indiscale.com>
Date: Wed, 25 Oct 2023 11:36:43 +0200
Subject: [PATCH] TST: Use correct quewry in unittest

---
 src/caosadvancedtools/json_schema_exporter.py | 2 +-
 unittests/test_json_schema_exporter.py        | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/caosadvancedtools/json_schema_exporter.py b/src/caosadvancedtools/json_schema_exporter.py
index 49c4a44a..a64b0e05 100644
--- a/src/caosadvancedtools/json_schema_exporter.py
+++ b/src/caosadvancedtools/json_schema_exporter.py
@@ -113,7 +113,7 @@ def _make_prop_from_prop(prop: db.Property, additional_properties: bool,
             raise NotImplementedError("Files have not been implemented yet.")
         else:
             values = _retrieve_enum_values(f"RECORD '{prop.datatype}'")
-            rt = db.execute_query(f"FIND RECORDTYPE with name='{prop.datatype}'", unique=True)
+            rt = db.execute_query(f"FIND RECORDTYPE WITH name='{prop.datatype}'", unique=True)
             subschema = _treat_recordtype(rt, additional_properties,
                                           name_and_description_in_properties,
                                           additional_options_for_text_props,
diff --git a/unittests/test_json_schema_exporter.py b/unittests/test_json_schema_exporter.py
index 3dafab2d..57a45286 100644
--- a/unittests/test_json_schema_exporter.py
+++ b/unittests/test_json_schema_exporter.py
@@ -44,7 +44,7 @@ def _mock_execute_query(query_string, unique=False, **kwargs):
 
     if query_string == "SELECT name, id FROM RECORD 'OtherType'":
         return other_type_records
-    elif query_string == "FIND RECORDTYPE 'OtherType'" and unique is True:
+    elif query_string == "FIND RECORDTYPE WITH name='OtherType'" and unique is True:
         return other_type_rt
     elif query_string == "SELECT name, id FROM RECORD":
         return all_records
-- 
GitLab