From 5d24cd5fb8d5c0b3578172b4fcaee47ebd01cc4f Mon Sep 17 00:00:00 2001 From: mibe Date: Tue, 27 Aug 2024 13:13:46 +0100 Subject: [PATCH] #49 Re-enabled the test, but only for ITDE --- pytest-slc/test/integration/pytest_slc_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pytest-slc/test/integration/pytest_slc_test.py b/pytest-slc/test/integration/pytest_slc_test.py index 7a2a99f..04010dc 100644 --- a/pytest-slc/test/integration/pytest_slc_test.py +++ b/pytest-slc/test/integration/pytest_slc_test.py @@ -32,7 +32,7 @@ def assert_udf_running(conn: pyexasol.ExaConnection): 'RETURNS BOOLEAN AS ' 'def run(ctx): ' 'return True ' - '/' + '\n/' ) conn.execute(udf_create_sql) result = conn.execute(f'SELECT "{{schema}}"."{{udf_name}}"()').fetchall()