From ce1dbca20210b9037ecda46650f2e0991cb2f4de Mon Sep 17 00:00:00 2001 From: Vandana Kannan Date: Fri, 30 Aug 2019 15:52:13 -0700 Subject: [PATCH] Revert "Add a test for ends=None" This reverts commit 3e1b6c35b11a4f965d0dbde5a3c63cba4b576e4b. --- tests/python-pytest/onnx/test_node.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/tests/python-pytest/onnx/test_node.py b/tests/python-pytest/onnx/test_node.py index 18cf69b9bb91..96045516c69e 100644 --- a/tests/python-pytest/onnx/test_node.py +++ b/tests/python-pytest/onnx/test_node.py @@ -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']