diff --git a/moose-core/tests/python/test_difshells.py b/moose-core/tests/python/test_difshells.py index 96c3a6beb5fd9e4cbd040ddd03e92d69d6c29ee3..f9f99c02c70f4d22c444924f65a89ab0b4dc056e 100644 --- a/moose-core/tests/python/test_difshells.py +++ b/moose-core/tests/python/test_difshells.py @@ -205,6 +205,6 @@ if __name__ == '__main__': header += ' difshell_' + str(i) + '_difbuff_' + str(j) assert np.isclose(res.mean(), 0.60599), \ 'Expected 0.60599, got %g' % np.mean(res) - assert np.std(res) == 1.9505, np.std( res ), \ + assert np.isclose(np.std(res), 1.9505), \ 'Expected 1.95053 got %g' % np.std(res) print( 'All done' )