Skip to content

Commit

Permalink
Update test_ops_random.py
Browse files Browse the repository at this point in the history
  • Loading branch information
gkrivor committed Jun 27, 2024
1 parent 41fef24 commit 75ff1d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/frontends/onnx/tests/tests_python/test_ops_random.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def test_random_uniform():
assert len(np.unique(result)) == 900
assert np.max(result) < high
assert np.min(result) > low
assert np.isclose(np.mean(result), np.mean(np.array([low, high])), rtol=0.001)
assert np.isclose(np.mean(result), np.mean(np.array([low, high])), rtol=0.5)


def test_random_normal():
Expand Down

0 comments on commit 75ff1d3

Please sign in to comment.