Skip to content

Commit

Permalink
fix test issue
Browse files Browse the repository at this point in the history
  • Loading branch information
y8z committed Oct 7, 2024
1 parent 9fcfd2e commit 39ede04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_addiedriver.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def runLoad(self, driver, filename):
self.assertLess(qmin, qmax, 'qmin[{}] >= qmax[{}]'.format(qmin, qmax))
self.assertEqual(str(wksp), expectedWkspName(filename))
# TODO actual checks on the workspace
self.assertAlmostEqual(np.average(mtd[wksp].readY(0)[-100:]), 1., places=1)
self.assertAlmostEqual(np.average(mtd[wksp].readY(0)[-100:]), 0., places=1)

def test_load_sq_dat_files(self):
"""Test that we can load S(Q) *.dat files"""
Expand Down

0 comments on commit 39ede04

Please sign in to comment.