From 5651f2c48ce8e357f6611b07b21de33b9b1d1541 Mon Sep 17 00:00:00 2001 From: Federico Montesino Pouzols Date: Wed, 15 Apr 2015 13:09:57 +0100 Subject: [PATCH] fix call to old plot() in test, re #11542 --- Code/Mantid/MantidPlot/test/MantidPlotProxiesTest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Code/Mantid/MantidPlot/test/MantidPlotProxiesTest.py b/Code/Mantid/MantidPlot/test/MantidPlotProxiesTest.py index b1c355684955..31c614b211ba 100644 --- a/Code/Mantid/MantidPlot/test/MantidPlotProxiesTest.py +++ b/Code/Mantid/MantidPlot/test/MantidPlotProxiesTest.py @@ -137,7 +137,7 @@ def test_closing_getInstrumentView(self): self.try_closing(iv, "getInstrumentView()") def test_convertToWaterfall(self): - g = plot(workspace("IRS26173"),(0,1,2,3,4)) + g = pymantidplot.qtiplot.plot(workspace("IRS26173"),(0,1,2,3,4)) convertToWaterfall(g) self.try_closing(g, "convertToWaterfall()")