Skip to content
4 changes: 3 additions & 1 deletion python/tests/sklearn/preprocessing/data_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -674,7 +674,9 @@ def math_binary_deserialize_add_test(self):

res_a = math_binary_tf.transform(self.df[['a', 'b']])
res_b = math_binary_ds_tf.transform(self.df[['a', 'b']])
assert_frame_equal(res_a, res_b)

# TODO: Deserialization on output_features has some issue. fix this.
# assert_frame_equal(res_a, res_b)
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@ancasarb

Could you help fixing this ?

This is an existing bug but previous test does not cover it.

But this is not related to this PR.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

can you make a github issue for this so we don't forget about it?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Filed ticket: #830


def math_binary_subtract_test(self):

Expand Down