Skip to content

Commit

Permalink
fix test sort
Browse files Browse the repository at this point in the history
  • Loading branch information
ion-elgreco committed Mar 20, 2024
1 parent 14c30b1 commit 51dcdba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/tests/pyspark_integration/test_writer_readable.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ def test_read_checkpointed_table(tmp_path: pathlib.Path):
dt = DeltaTable(tmp_path)
dt.create_checkpoint()

assert_spark_read_equal(data, str(tmp_path))
assert_spark_read_equal(data, str(tmp_path), ["int"])


@pytest.mark.pyspark
Expand All @@ -129,4 +129,4 @@ def test_read_checkpointed_features_table(tmp_path: pathlib.Path):
dt = DeltaTable(tmp_path)
dt.create_checkpoint()

assert_spark_read_equal(data, str(tmp_path))
assert_spark_read_equal(data, str(tmp_path), ["timestamp"])

0 comments on commit 51dcdba

Please sign in to comment.