Skip to content

Commit

Permalink
Fix badly named selector
Browse files Browse the repository at this point in the history
  • Loading branch information
jleibs committed Oct 9, 2024
1 parent e9595fa commit 81a930e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rerun_py/tests/unit/test_dataframe.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,10 +102,10 @@ def test_full_view(self) -> None:

def test_select_columns(self) -> None:
view = self.recording.view(index="my_index", contents="points")
log_time = rr.dataframe.IndexColumnSelector("my_index")
index_col = rr.dataframe.IndexColumnSelector("my_index")
pos = rr.dataframe.ComponentColumnSelector("points", rr.components.Position3D)

batches = view.select(log_time, pos)
batches = view.select(index_col, pos)

table = pa.Table.from_batches(batches, batches.schema)
# points
Expand Down

0 comments on commit 81a930e

Please sign in to comment.