Skip to content

Commit

Permalink
re #6669 relax precision of log averaging in tests to handle OS diffs
Browse files Browse the repository at this point in the history
  • Loading branch information
NickDraper committed May 17, 2013
1 parent c70b750 commit 2b57c07
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@ def test_LoadPartiallyValidFilesMultipleLogValues(self):
self.assertEqual(3, tablews.columnCount())

self.assertEqual(6473, tablews.cell(0,0))
self.assertAlmostEqual(200.078, tablews.cell(0,1),3)
self.assertAlmostEqual(200.078, tablews.cell(0,1),2)
self.assertEqual("8697", tablews.cell(0,2))
self.assertEqual(6475, tablews.cell(1,0))
self.assertAlmostEqual(283.523, tablews.cell(1,1),3)
self.assertAlmostEqual(283.523, tablews.cell(1,1),2)
self.assertEqual("5647", tablews.cell(1,2))

run_algorithm("DeleteWorkspace", Workspace = outputWorskapceName)
Expand Down

0 comments on commit 2b57c07

Please sign in to comment.