Skip to content
Snippets Groups Projects
Commit 76faae60 authored by Dan Nixon's avatar Dan Nixon
Browse files

Do not save files when not needed

Refs #11139
parent 9211b3cd
No related branches found
No related tags found
No related merge requests found
...@@ -9,23 +9,20 @@ class ElasticWindowMultipleTest(stresstesting.MantidStressTest): ...@@ -9,23 +9,20 @@ class ElasticWindowMultipleTest(stresstesting.MantidStressTest):
def runTest(self): def runTest(self):
Load(Filename='osi92762_graphite002_red.nxs,osi92763_graphite002_red.nxs', Load(Filename='osi92762_graphite002_red.nxs,osi92763_graphite002_red.nxs',
OutputWorkspace='__ElWinMulti_InputWS') OutputWorkspace='__ElWinMulti_InputWS')
ElasticWindowMultiple( ElasticWindowMultiple(InputWorkspaces='__ElWinMulti_InputWS',
InputWorkspaces='__ElWinMulti_InputWS', Range1Start=-0.2,
Range1Start=-0.2, Range1End=0.2,
Range1End=0.2, Range2Start='-0.24',
Range2Start='-0.24', Range2End='-0.22',
Range2End='-0.22', OutputInQ='eq',
OutputInQ='eq', OutputInQSquared='eq2',
OutputInQSquared='eq2', OutputELF='elf',
OutputELF='elf', OutputELT='elt')
OutputELT='elt')
GroupWorkspaces(InputWorkspaces=['elf', 'elt'], GroupWorkspaces(InputWorkspaces=['elf', 'elt'],
OutputWorkspace='__ElWinMulti_OutputWS') OutputWorkspace='__ElWinMulti_OutputWS')
SaveNexus(Filename='__ElWinMulti_OutputWS', InputWorkspace='__ElWinMulti_OutputWS')
def validate(self): def validate(self):
self.tolerance = 1e-10 self.tolerance = 1e-10
......
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