We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fc41a90 commit cfbdf41Copy full SHA for cfbdf41
test/neutron_detection/test_calibration.py
@@ -1,7 +1,9 @@
1
-from libra_toolbox.neutron_detection.activation_foils.calibration import get_decay_lines
+from libra_toolbox.neutron_detection.activation_foils import calibration
2
3
4
-def test_get_decay_liness():
5
- decay_lines = get_decay_lines(['Na22', 'Cs137'])
+def test_get_decay_lines():
+ decay_lines = calibration.get_decay_lines(['Na22', 'Cs137'])
6
assert isinstance(decay_lines, dict)
7
- assert 'energy' in decay_lines['Na22'].keys()
+ assert 'energy' in decay_lines['Na22'].keys()
8
+
9
0 commit comments