Skip to content

Commit

Permalink
fix pytests
Browse files Browse the repository at this point in the history
  • Loading branch information
a10y committed Jun 26, 2024
1 parent 8cd7f8f commit df06c5f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
3 changes: 1 addition & 2 deletions pyvortex/test/test_array.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,9 @@ def test_varbin_array_round_trip():

def test_varbin_array_take():
a = vortex.encode(pa.array(["a", "b", "c", "d"]))
# TODO(ngates): ensure we correctly round-trip to a string and not large_string
assert a.take(vortex.encode(pa.array([0, 2]))).to_pyarrow().combine_chunks() == pa.array(
["a", "c"],
type=pa.large_utf8(),
type=pa.utf8(),
)


Expand Down
1 change: 1 addition & 0 deletions requirements-dev.lock
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
# features: []
# all-features: false
# with-sources: false
# generate-hashes: false

-e file:.
-e file:pyvortex
Expand Down
1 change: 1 addition & 0 deletions requirements.lock
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
# features: []
# all-features: false
# with-sources: false
# generate-hashes: false

-e file:.
-e file:pyvortex

0 comments on commit df06c5f

Please sign in to comment.