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 authored Jun 25, 2024
1 parent 21a5523 commit ba39f42
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 ba39f42

Please sign in to comment.