Skip to content

Commit

Permalink
Apply fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
laughingman7743 committed Jan 23, 2022
1 parent 0c3c7c5 commit d5ccdda
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/test_sqlalchemy_athena.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,9 @@ def test_reflect_table(self, engine, conn):
self.assertEqual(one_row.comment, "table comment")
self.assertIn("location", one_row.dialect_options["awsathena"])
self.assertIn("compression", one_row.dialect_options["awsathena"])
self.assertIsNotNone("location", one_row.dialect_options["awsathena"]["location"])
self.assertIsNotNone(
"location", one_row.dialect_options["awsathena"]["location"]
)

@with_engine()
def test_reflect_table_with_schema(self, engine, conn):
Expand Down

0 comments on commit d5ccdda

Please sign in to comment.