Skip to content
Snippets Groups Projects
Commit 7e8469ee authored by Savici, Andrei T.'s avatar Savici, Andrei T. Committed by GitHub
Browse files

Fix python3 test

parent c70e2494
No related branches found
No related tags found
No related merge requests found
...@@ -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)
......
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