Skip to content

Commit

Permalink
remove debug print
Browse files Browse the repository at this point in the history
  • Loading branch information
karenhaining committed Aug 29, 2024
1 parent 4fdcd61 commit 63c084a
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions tests/integration_test/test_sql_integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,5 @@ def test_adms(setup, adm):
norm_name = yang_to_sql(adm_set.load_from_file(filepath).norm_name)
sql_file = os.path.join(ADMS_DIR, "amp-sql", "Agent_Scripts", 'adm_{name}.sql'.format(name=norm_name))
with open(sql_file, "r") as f:

# TODO Karen remove debug
content = f.read()
print(content)

cursor.execute(content)
cursor.execute(f.read())
cursor.execute("rollback")

0 comments on commit 63c084a

Please sign in to comment.