Skip to content

Commit

Permalink
Fix format
Browse files Browse the repository at this point in the history
Signed-off-by: Cheng Su <[email protected]>
  • Loading branch information
c21 committed May 2, 2024
1 parent 4e3d120 commit 9bb0356
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/ray/data/tests/test_lance.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def test_lance_read_basic(fs, data_path):
ds = ray.data.read_lance(path, columns=["one"])
values = [s["one"] for s in ds.take()]
assert sorted(values) == [1, 2, 3, 4, 5, 6]
assert ds.schema().names == ['one', 'two', 'three', 'four']
assert ds.schema().names == ["one", "two", "three", "four"]


if __name__ == "__main__":
Expand Down

0 comments on commit 9bb0356

Please sign in to comment.