Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Commit

Permalink
Revert "Add a test for ends=None"
Browse files Browse the repository at this point in the history
This reverts commit 3e1b6c3.
  • Loading branch information
vandanavk committed Jan 10, 2020
1 parent a28da92 commit ce1dbca
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions tests/python-pytest/onnx/test_node.py
Original file line number Diff line number Diff line change
Expand Up @@ -274,11 +274,7 @@ def test_exports(self):
("test_random_normal", mx.sym.random_normal, "RandomNormal", [],
{'shape': (2, 2), 'loc': 0, 'scale': 1}, False, {'modify': {'loc': 'mean'}}, False, True),
("test_random_uniform", mx.sym.random_uniform, "RandomUniform", [],
{'shape': (2, 2), 'low': 0.5, 'high': 1.0}, False, {}, False, True),
("test_slice_axis", mx.sym.slice_axis, "Slice", [get_rnd((2, 3, 20, 20))],
{'axis': 0, 'begin': 0, 'end': None}, False,
{'remove': ['axis', 'begin', 'end'],
'add': {'axes': [0], 'starts': [0], 'ends': [sys.maxsize]}}, True, False)
{'shape': (2, 2), 'low': 0.5, 'high': 1.0}, False, {}, False, True)
]

test_scalar_ops = ['Add', 'Sub', 'rSub' 'Mul', 'Div', 'Pow']
Expand Down

0 comments on commit ce1dbca

Please sign in to comment.