Skip to content

Commit

Permalink
Corrected python server test.
Browse files Browse the repository at this point in the history
  • Loading branch information
lbooker42 committed Dec 18, 2024
1 parent aa9aa85 commit ad22cd4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion py/server/tests/test_table.py
Original file line number Diff line number Diff line change
Expand Up @@ -500,7 +500,7 @@ def test_agg_count_where_output(self):
self.assertEqual(result_table.size, 2)

# get the table as a local pandas dataframe
df = result_table.to_pandas()
df = to_pandas(result_table)
# assert the values meet expectations
self.assertEqual(df.loc[0, "count1"], 37)
self.assertEqual(df.loc[1, "count1"], 38)
Expand Down

0 comments on commit ad22cd4

Please sign in to comment.