Skip to content

Commit

Permalink
Add a missed change.
Browse files Browse the repository at this point in the history
  • Loading branch information
jmao-denver committed Jun 6, 2024
1 parent 6c75403 commit 2c6a355
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion py/server/tests/test_column.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ def get_x(i) -> int:
t_func = empty_table(n).update(["X = get_x(i)"])
# We want to test that casting on both PyObject and JObject works as expected.
self.assertEqual(t_list.columns[0].data_type, dtypes.PyObject)
self.assertEqual(t_func.columns[0].data_type, dtypes.int_)
self.assertEqual(t_func.columns[0].data_type, dtypes.int64)
t_func_str = t_func.to_string()
for v in x:
self.assertIn(str(int(v)), t_func_str)
Expand Down

0 comments on commit 2c6a355

Please sign in to comment.