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
3b2bc49c
Commit
3b2bc49c
authored
8 years ago
by
WHITFIELDRE email
Browse files
Options
Downloads
Patches
Plain Diff
Fix unittests for GSL2
parent
b51a816a
Loading
Loading
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Framework/PythonInterface/test/python/plugins/algorithms/NMoldyn4InterpolationTest.py
+2
-2
2 additions, 2 deletions
...st/python/plugins/algorithms/NMoldyn4InterpolationTest.py
scripts/test/CrystalFieldTest.py
+1
-1
1 addition, 1 deletion
scripts/test/CrystalFieldTest.py
with
3 additions
and
3 deletions
Framework/PythonInterface/test/python/plugins/algorithms/NMoldyn4InterpolationTest.py
+
2
−
2
View file @
3b2bc49c
...
@@ -39,8 +39,8 @@ class NMoldyn4InterpolationTest(unittest.TestCase):
...
@@ -39,8 +39,8 @@ class NMoldyn4InterpolationTest(unittest.TestCase):
self
.
assertNotEqual
(
len
(
inter_X
),
sim
.
getAxis
(
0
).
length
())
self
.
assertNotEqual
(
len
(
inter_X
),
sim
.
getAxis
(
0
).
length
())
self
.
assertEqual
(
inter_Q_length
,
osiris_Q_length
)
self
.
assertEqual
(
inter_Q_length
,
osiris_Q_length
)
self
.
assertNotEqual
(
inter_Q_length
,
sim
.
getNumberHistograms
())
self
.
assertNotEqual
(
inter_Q_length
,
sim
.
getNumberHistograms
())
self
.
assertAlmostEqual
(
sample_Y_data
[
0
],
0.020095312
677012457
,
12
)
self
.
assertAlmostEqual
(
sample_Y_data
[
0
],
0.020095312
,
9
)
self
.
assertAlmostEqual
(
sample_Y_data
[
30
],
1.73103349
27635238
,
12
)
self
.
assertAlmostEqual
(
sample_Y_data
[
30
],
1.73103349
,
7
)
def
test_X_min_too_big
(
self
):
def
test_X_min_too_big
(
self
):
x_data
=
np
.
arange
(
-
0.5
,
2.
,
0.05
)
x_data
=
np
.
arange
(
-
0.5
,
2.
,
0.05
)
...
...
This diff is collapsed.
Click to expand it.
scripts/test/CrystalFieldTest.py
+
1
−
1
View file @
3b2bc49c
...
@@ -1031,7 +1031,7 @@ class CrystalFieldFitTest(unittest.TestCase):
...
@@ -1031,7 +1031,7 @@ class CrystalFieldFitTest(unittest.TestCase):
self
.
assertAlmostEqual
(
cf
.
peaks
.
param
[
0
][
'
FWHM
'
],
1.0112
,
4
)
self
.
assertAlmostEqual
(
cf
.
peaks
.
param
[
0
][
'
FWHM
'
],
1.0112
,
4
)
self
.
assertAlmostEqual
(
cf
.
peaks
.
param
[
1
][
'
FWHM
'
],
1.5811
,
4
)
self
.
assertAlmostEqual
(
cf
.
peaks
.
param
[
1
][
'
FWHM
'
],
1.5811
,
4
)
self
.
assertAlmostEqual
(
cf
.
peaks
.
param
[
2
][
'
FWHM
'
],
1.794
7
,
4
)
self
.
assertAlmostEqual
(
cf
.
peaks
.
param
[
2
][
'
FWHM
'
],
1.794
,
2
)
def
test_resolution_single_spectrum_fit_variation
(
self
):
def
test_resolution_single_spectrum_fit_variation
(
self
):
from
CrystalField
import
CrystalField
,
CrystalFieldFit
from
CrystalField
import
CrystalField
,
CrystalFieldFit
...
...
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