Skip to content
Snippets Groups Projects
Commit c5527d44 authored by Roman Tolchenov's avatar Roman Tolchenov
Browse files

Fix flake8 warnings. Re #23212

parent e4c9d785
No related branches found
No related tags found
No related merge requests found
......@@ -8,7 +8,7 @@ class ReflectometryCreateFloodWorkspaceNoExclude(stresstesting.MantidStressTest)
flood_ws_name = 'flood'
def runTest(self):
flood = CreateFloodWorkspace('OFFSPEC00035946.nxs', StartSpectrumIndex=265, EndSpectrumIndex=500, OutputWorkspace=self.flood_ws_name)
CreateFloodWorkspace('OFFSPEC00035946.nxs', StartSpectrumIndex=265, EndSpectrumIndex=500, OutputWorkspace=self.flood_ws_name)
def validate(self):
return self.flood_ws_name,'ReflFloodFileNoExclude.nxs'
......@@ -19,8 +19,8 @@ class ReflectometryCreateFloodWorkspaceExclude(stresstesting.MantidStressTest):
flood_ws_name = 'flood'
def runTest(self):
flood = CreateFloodWorkspace('OFFSPEC00035946.nxs', StartSpectrumIndex=250, EndSpectrumIndex=600,
Exclude=[260, 261, 262, 516, 517, 518], OutputWorkspace=self.flood_ws_name)
CreateFloodWorkspace('OFFSPEC00035946.nxs', StartSpectrumIndex=250, EndSpectrumIndex=600,
Exclude=[260, 261, 262, 516, 517, 518], OutputWorkspace=self.flood_ws_name)
def validate(self):
return self.flood_ws_name,'ReflFloodFileExclude.nxs'
......@@ -31,8 +31,8 @@ class ReflectometryCreateFloodWorkspaceQuadratic(stresstesting.MantidStressTest)
flood_ws_name = 'flood'
def runTest(self):
flood = CreateFloodWorkspace('OFFSPEC00035946.nxs', StartSpectrumIndex=10, Background='Quadratic',
Exclude=[260, 261, 262, 516, 517, 518], OutputWorkspace=self.flood_ws_name)
CreateFloodWorkspace('OFFSPEC00035946.nxs', StartSpectrumIndex=10, Background='Quadratic',
Exclude=[260, 261, 262, 516, 517, 518], OutputWorkspace=self.flood_ws_name)
def validate(self):
return self.flood_ws_name,'ReflFloodFileQuadratic.nxs'
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