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
7e8469ee
Commit
7e8469ee
authored
7 years ago
by
Savici, Andrei T.
Committed by
GitHub
7 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Fix python3 test
parent
c70e2494
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Framework/PythonInterface/test/python/plugins/algorithms/ComputeIncoherentDOSTest.py
+2
-2
2 additions, 2 deletions
...est/python/plugins/algorithms/ComputeIncoherentDOSTest.py
with
2 additions
and
2 deletions
Framework/PythonInterface/test/python/plugins/algorithms/ComputeIncoherentDOSTest.py
+
2
−
2
View file @
7e8469ee
...
@@ -55,8 +55,8 @@ class ComputeIncoherentDOSTest(unittest.TestCase):
...
@@ -55,8 +55,8 @@ class ComputeIncoherentDOSTest(unittest.TestCase):
self
.
assertEquals
(
ws_DOS
.
getAxis
(
0
).
getUnit
().
unitID
(),
'
DeltaE_inWavenumber
'
)
self
.
assertEquals
(
ws_DOS
.
getAxis
(
0
).
getUnit
().
unitID
(),
'
DeltaE_inWavenumber
'
)
self
.
assertEquals
(
ws_DOS
.
blocksize
(),
200
)
self
.
assertEquals
(
ws_DOS
.
blocksize
(),
200
)
# Checks that the Bose factor correction is ok.
# Checks that the Bose factor correction is ok.
dos_eplus
=
np
.
max
(
ws_DOS
.
readY
(
0
)[
range
(
100
,
200
)
])
dos_eplus
=
np
.
max
(
ws_DOS
.
readY
(
0
)[
100
:
200
])
dos_eminus
=
np
.
max
(
ws_DOS
.
readY
(
0
)[
range
(
0
,
100
)
])
dos_eminus
=
np
.
max
(
ws_DOS
.
readY
(
0
)[
:
100
])
self
.
assertAlmostEqual
(
dos_eplus
,
dos_eminus
,
places
=
1
)
self
.
assertAlmostEqual
(
dos_eplus
,
dos_eminus
,
places
=
1
)
# Check that unit conversion from cm^-1 to meV works and also that conversion to states/meV is done
# Check that unit conversion from cm^-1 to meV works and also that conversion to states/meV is done
ws
=
self
.
convertToWavenumber
(
ws
)
ws
=
self
.
convertToWavenumber
(
ws
)
...
...
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