Skip to content

Commit

Permalink
Apply fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
laughingman7743 authored and cansjt committed Jan 31, 2022
1 parent 62eb91e commit ff8d50d
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 ff8d50d

Please sign in to comment.