Skip to content

Commit

Permalink
Fix minor format inconsistency
Browse files Browse the repository at this point in the history
  • Loading branch information
jmao-denver committed Aug 9, 2024
1 parent 5a58458 commit 08cda9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion py/server/tests/test_table.py
Original file line number Diff line number Diff line change
Expand Up @@ -1146,7 +1146,7 @@ def test_table_diff(self):
d = table_diff(t1, t2, max_diffs=10, ignore_column_order=True)
self.assertEqual(d, "")

with self.subTest("diff - floating_comparison = 'absolute' - double"):
with self.subTest("diff - floating_comparison = 'absolute'-double"):
t1 = empty_table(10).update(["A = i", "B = i + 1.0"])
t2 = empty_table(10).update(["A = i", "B = i + 1.00001"])
d = table_diff(t1, t2, max_diffs=10, floating_comparison='exact').split("\n")
Expand Down

0 comments on commit 08cda9e

Please sign in to comment.