diff --git a/Framework/PythonInterface/test/python/mantid/kernel/ConfigServiceTest.py b/Framework/PythonInterface/test/python/mantid/kernel/ConfigServiceTest.py index fbeb78d81a9979656937f3dfc2ce47249d629dc5..a8cfbaa84b7627f1deba821f6eac53a8e8f65db1 100644 --- a/Framework/PythonInterface/test/python/mantid/kernel/ConfigServiceTest.py +++ b/Framework/PythonInterface/test/python/mantid/kernel/ConfigServiceTest.py @@ -65,7 +65,7 @@ class ConfigServiceTest(unittest.TestCase): self.assertRaises(RuntimeError, config.getInstrument, "MadeUpInstrument") def test_service_acts_like_dictionary(self): - test_prop = "algorithms.retained" + test_prop = "projectRecovery.secondsBetween" self.assertTrue(config.hasProperty(test_prop)) dictcall = config[test_prop] fncall = config.getString(test_prop)