Skip to content
Snippets Groups Projects
Commit 69fbf715 authored by Mathieu Tillet's avatar Mathieu Tillet
Browse files

Fixed the failure of build when default facility was not ILL

parent f80f2251
No related merge requests found
...@@ -41,7 +41,7 @@ When multiple runs are summed, the run number of the first run is attributed to ...@@ -41,7 +41,7 @@ When multiple runs are summed, the run number of the first run is attributed to
.. testsetup:: ExSANSILLAutoProcess .. testsetup:: ExSANSILLAutoProcess
config['default.facility'] = 'ILL' config.setFacility('ILL')
config.appendDataSearchSubDir('ILL/D11/') config.appendDataSearchSubDir('ILL/D11/')
.. testcode:: ExSANSILLAutoProcess .. testcode:: ExSANSILLAutoProcess
...@@ -96,7 +96,8 @@ Output: ...@@ -96,7 +96,8 @@ Output:
from mantid.simpleapi import * from mantid.simpleapi import *
import matplotlib.pyplot as plt import matplotlib.pyplot as plt
config['default.facility'] = 'ILL' config.setFacility('ILL')
config['default.instrument'] = 'D33'
config.appendDataSearchSubDir('ILL/D33/') config.appendDataSearchSubDir('ILL/D33/')
absorber = '002227' absorber = '002227'
......
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