From ddb74efc65b2987fea4879cffd39323bd0388e1a Mon Sep 17 00:00:00 2001 From: Peter Parker Date: Tue, 14 Feb 2012 10:02:25 +0000 Subject: [PATCH] Refs #1419 - Fix for failed FilePropertyTest.py --- .../Framework/PythonInterface/test/python/FilePropertyTest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Code/Mantid/Framework/PythonInterface/test/python/FilePropertyTest.py b/Code/Mantid/Framework/PythonInterface/test/python/FilePropertyTest.py index 37bc2c47f6d4..1ccf2e7e619d 100644 --- a/Code/Mantid/Framework/PythonInterface/test/python/FilePropertyTest.py +++ b/Code/Mantid/Framework/PythonInterface/test/python/FilePropertyTest.py @@ -5,7 +5,7 @@ class FilePropertyTest(unittest.TestCase): def test_alg_get_property_converts_to_this(self): - alg = run_algorithm('Load', Filename='LOQ48127.raw', OutputWorkspace='tmp', SpectrumMax=1) + alg = run_algorithm('LoadRaw', Filename='LOQ48127.raw', OutputWorkspace='tmp', SpectrumMax=1) prop = alg.getProperty("Filename") self.assertEquals(type(prop), FileProperty) self.assertTrue('value' in dir(prop)) # Do we have a value method