From 5d347fd6a3c5e1d17621483b5d8ec8251138a3d2 Mon Sep 17 00:00:00 2001 From: Pete Peterson Date: Wed, 20 Aug 2014 16:17:28 -0400 Subject: [PATCH] Re #10137. Fixing indentation error. --- .../test/python/mantid/api/ExperimentInfoTest.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Code/Mantid/Framework/PythonInterface/test/python/mantid/api/ExperimentInfoTest.py b/Code/Mantid/Framework/PythonInterface/test/python/mantid/api/ExperimentInfoTest.py index 73ce0b7ebcd0..7b69b5b74f63 100644 --- a/Code/Mantid/Framework/PythonInterface/test/python/mantid/api/ExperimentInfoTest.py +++ b/Code/Mantid/Framework/PythonInterface/test/python/mantid/api/ExperimentInfoTest.py @@ -32,13 +32,13 @@ def test_run_access_returns_run_object(self): self.assertTrue(isinstance(run, Run)) def test_get_energy_mode(self): - emode = self._expt_ws.getEMode() - self.assertEquals(emode, 0) + emode = self._expt_ws.getEMode() + self.assertEquals(emode, 0) # def test_set_and_get_efixed(self): -# ws = WorkspaceCreationHelper.create2DWorkspaceWithFullInstrument(1, 5, False, False) +# ws = WorkspaceCreationHelper.create2DWorkspaceWithFullInstrument(1, 5, False, False) # ws.setEFixed(1, 3.1415) -# self.assertEquals(ws.getEFixed(1), 3.1415) +# self.assertEquals(ws.getEFixed(1), 3.1415) if __name__ == '__main__': unittest.main()