Skip to content

Commit

Permalink
#43 Fixed the test
Browse files Browse the repository at this point in the history
  • Loading branch information
ahsimb committed Aug 15, 2024
1 parent 9556729 commit ed507e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pytest-slc/test/integration/pytest_slc_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def assert_udf_running(conn: pyexasol.ExaConnection, language_alias: str):
with temp_schema(conn) as schema:
udf_name = 'TEST_UDF'
conn.execute(textwrap.dedent(f"""
CREATE OR REPLACE {language_alias} SCALAR SCRIPT {schema}."{udf_name}"()
CREATE OR REPLACE {language_alias} SCALAR SCRIPT "{schema}"."{udf_name}"()
RETURNS BOOLEAN AS
def run(ctx):
return True
Expand Down

0 comments on commit ed507e1

Please sign in to comment.