Skip to content

Commit

Permalink
Fix a test failure
Browse files Browse the repository at this point in the history
  • Loading branch information
jmao-denver committed Aug 2, 2023
1 parent 86ec6fb commit 52fe48d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion py/server/tests/test_learn_gather.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ def base_test(self, source, model, np_dtype):
gatherer_colmajor = lambda rowset, colset: gather.table_to_numpy_2d(rowset, colset,
gather.MemoryLayout.COLUMN_MAJOR, np_dtype)

array_from_table = to_pandas(source).values
array_from_table = to_pandas(source, conv_null=False).values

gathered_rowmajor = gatherer_rowmajor(rows, cols)
gathered_colmajor = gatherer_colmajor(rows, cols)
Expand Down

0 comments on commit 52fe48d

Please sign in to comment.