Skip to content

Commit fc487b2

Browse files
remove wrong fetch
1 parent 155c3af commit fc487b2

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

test/integration_tests/with_db/deployment/test_create_script.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,7 @@ def test_create_script(setup_database, db_conn, tmpdir_factory):
1919
with open(script_path, "r") as create_script:
2020
query = create_script.read()
2121

22-
result = db_conn.execute(query).fetchall()
23-
assert result.exit_code == 0
22+
db_conn.execute(query)
2423

2524
list_scripts_query = (
2625
"""SELECT SCRIPT_NAME FROM EXA_ALL_SCRIPTS WHERE SCRIPT_LANGUAGE=PYTHON3_TE"""

0 commit comments

Comments
 (0)