Skip to content

Commit

Permalink
Remove print
Browse files Browse the repository at this point in the history
  • Loading branch information
westonpace committed Sep 11, 2024
1 parent ff580ce commit 321e56d
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions python/python/tests/test_dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -540,8 +540,6 @@ def test_pickle(tmp_path: Path):


def test_nested_projection(tmp_path: Path):
from lance.debug import format_fragment

table = pa.Table.from_pydict(
{
"a": range(100),
Expand All @@ -554,7 +552,6 @@ def test_nested_projection(tmp_path: Path):

dataset = lance.dataset(base_dir)

print(format_fragment(dataset.get_fragment(0).metadata, dataset))
projected = dataset.to_table(columns=["struct.x"])
assert projected == pa.Table.from_pydict({"struct.x": range(100)})

Expand Down

0 comments on commit 321e56d

Please sign in to comment.