From 3ac8c33178eb9c0659f26ed574550f115ebc5ab4 2012-07-17 15:30:53 From: Bradley M. Froehle Date: 2012-07-17 15:30:53 Subject: [PATCH] s/nt.assert_not_equals/nt.assert_not_equal/ --- diff --git a/IPython/testing/tests/test_decorators.py b/IPython/testing/tests/test_decorators.py index 9929b52..a859155 100644 --- a/IPython/testing/tests/test_decorators.py +++ b/IPython/testing/tests/test_decorators.py @@ -180,9 +180,9 @@ def test_linux(): @dec.skip_win32 def test_win32(): - nt.assert_not_equals(sys.platform,'win32',"This test can't run under windows") + nt.assert_not_equal(sys.platform,'win32',"This test can't run under windows") @dec.skip_osx def test_osx(): - nt.assert_not_equals(sys.platform,'darwin',"This test can't run under osx") + nt.assert_not_equal(sys.platform,'darwin',"This test can't run under osx")