Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
mantid
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mantidproject
mantid
Commits
818b5d07
Commit
818b5d07
authored
9 years ago
by
Elliot Oram
Browse files
Options
Downloads
Patches
Plain Diff
Changed systemTest to use correct naming convention
Refs #13975
parent
24a15d2b
Loading
Loading
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Testing/SystemTests/tests/analysis/ISISIndirectInelastic.py
+6
-1
6 additions, 1 deletion
Testing/SystemTests/tests/analysis/ISISIndirectInelastic.py
with
6 additions
and
1 deletion
Testing/SystemTests/tests/analysis/ISISIndirectInelastic.py
+
6
−
1
View file @
818b5d07
...
...
@@ -610,7 +610,12 @@ class ISISIndirectInelasticDiagnostics(ISISIndirectInelasticBase):
SpectraRange
=
self
.
spectra
)
# Construct the result ws name.
self
.
result_names
=
[
os
.
path
.
splitext
(
self
.
rawfiles
[
0
])[
0
]
+
self
.
suffix
]
Load
(
File
=
self
.
rawfiles
[
0
]
OutputWorkspace
=
'
__temp
'
)
resultWs
=
mtd
[
'
__temp
'
]
inst_name
=
resultWs
.
getInstrument
().
getFullName
().
lower
()
run_number
=
resultWs
.
run
().
getProperty
(
'
run_number
'
).
value
self
.
result_names
=
[
inst_name
+
run_number
+
self
.
suffix
]
def
_validate_properties
(
self
):
'''
Check the object properties are in an expected state to continue
'''
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment