Skip to content

Commit

Permalink
Remove the comparison based on wrong assumption (deephaven#4672)
Browse files Browse the repository at this point in the history
  • Loading branch information
jmao-denver authored Oct 19, 2023
1 parent e937e40 commit e40f537
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion py/client/tests/test_table.py
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,6 @@ def test_snapshot(self):
test_table = self.session.time_table(period=10000000).update(formulas=["Col1 = i", "Col2 = i * 2"])
result_table = test_table.snapshot()
self.assertEqual(test_table.schema, result_table.schema)
self.assertGreaterEqual(test_table.size, result_table.size)

def test_snapshot_when(self):
source_table = (self.session.time_table(period=10_000_000)
Expand Down

0 comments on commit e40f537

Please sign in to comment.