Skip to content

Commit

Permalink
Fixed test issue that caused github build to fail (#70)
Browse files Browse the repository at this point in the history
  • Loading branch information
brianna-dardin authored Jul 26, 2023
1 parent 4756610 commit abf5963
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/test_step_05.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@ def test_chapter_table_structure(self):

def tearDown(self):
drop_working = "drop database {}".format(self.args.temp_db_database)
self.sql.execute(drop_working)
self.sql.execute(drop_working, database=self.args.temp_db_database)
drop_final = "drop database {}".format(self.args.output_database)
self.sql.execute(drop_final)
self.sql.execute(drop_final, database=self.args.output_database)

if __name__ == '__main__':
unittest.main()

0 comments on commit abf5963

Please sign in to comment.