Skip to content

Commit

Permalink
fix added test
Browse files Browse the repository at this point in the history
  • Loading branch information
dougbrn committed Aug 13, 2024
1 parent 862cae9 commit 5eef6a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/nested_pandas/nestedframe/test_nestedframe.py
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ def test_from_lists():
assert list(res.columns) == ["nested"]
assert list(res.nested_columns) == ["nested"]

res = NestedFrame.from_lists(nf, base_columns=None, list_columns=["e"])
res = NestedFrame.from_lists(nf[["e"]], base_columns=None, list_columns=["e"])
assert list(res.columns) == ["nested"]
assert list(res.nested_columns) == ["nested"]

Expand Down

0 comments on commit 5eef6a5

Please sign in to comment.