Skip to content
Snippets Groups Projects
Commit 5507e0d5 authored by Savici, Andrei T.'s avatar Savici, Andrei T.
Browse files

Re #21385. Fix failing OSX test

parent e3b60265
No related branches found
No related tags found
No related merge requests found
...@@ -34,7 +34,7 @@ class Plots__init__Test(unittest.TestCase): ...@@ -34,7 +34,7 @@ class Plots__init__Test(unittest.TestCase):
def test_fail(self): def test_fail(self):
fig, ax = plt.subplots() fig, ax = plt.subplots()
self.assertRaises(Exception,ax.plot,self.ws2d_histo,'rs',specNum=1) self.assertRaises(Exception,ax.plot,self.ws2d_histo,'rs',specNum=1)
self.assertRaises(ValueError,ax.pcolormesh,self.ws2d_histo) self.assertRaises(Exception,ax.pcolormesh,self.ws2d_histo)
if __name__ == '__main__': if __name__ == '__main__':
unittest.main() unittest.main()
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment