Skip to content
This repository has been archived by the owner on Jul 16, 2024. It is now read-only.

Commit

Permalink
Fix testcase
Browse files Browse the repository at this point in the history
  • Loading branch information
ruxuez committed Jan 11, 2024
1 parent 2e051c6 commit 6dfa4a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_dataframe.py
Original file line number Diff line number Diff line change
Expand Up @@ -478,7 +478,7 @@ def test_table_distributed_hash(db: gp.Database):
def test_table_describe(db: gp.Database):
columns = {"a": [1, 2, 3], "b": [1, 2, 3]}
t = db.create_dataframe(columns=columns)
df = t.save_as("const_dataframe", column_names=["a", "b"], schema="test")
df = t.save_as("const_table_describe", column_names=["a", "b"], schema="test")
result = df.describe()
assert len(result) == 2
df_s = df[["a", "b"]]
Expand Down

0 comments on commit 6dfa4a5

Please sign in to comment.