Skip to content

Commit

Permalink
Remove no-capability patch test
Browse files Browse the repository at this point in the history
  • Loading branch information
jbachurski committed Dec 16, 2022
1 parent 216786e commit 7647b62
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions tests/type_inference/test_array_feature_extractor.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,3 @@ def test_array_feature_extractor_1d_special_case():
(x, y) = arguments(x=Tensor(np.str_, (5,)), y=Tensor(np.int64, (7,)))
r = op_ml.array_feature_extractor(x, y)
assert r.type == Tensor(np.str_, (1, 7))


def test_array_feature_extractor_inference_untyped():
# We are not trying to do more complicated guessing in type inference for now.
(x, y) = arguments(x=Tensor(np.str_, None), y=Tensor(np.int64, (None, 5)))
r = op_ml.array_feature_extractor(x, y)
assert r.type is None

0 comments on commit 7647b62

Please sign in to comment.