Skip to content

Commit

Permalink
formatting fix
Browse files Browse the repository at this point in the history
  • Loading branch information
akurdyukov committed Oct 3, 2023
1 parent 2882829 commit 9dc3f3e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/drivers/test_clickhouse_dialect.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,8 @@ def test_primary_keys(self):
if self.server_version < (18, 16, 0):
self.assertEqual({}, con)
else:
self.assertIsNotNone(con, "Table should contain primary key constrain")
self.assertIsNotNone(con,
"Table should contain primary key constrain")
self.assertTrue("constrained_columns" in con)
self.assertEqual(("x",), con["constrained_columns"])

Expand Down

0 comments on commit 9dc3f3e

Please sign in to comment.