Unverified Commit 4162f08d authored by Muhammed Fatih BALIN's avatar Muhammed Fatih BALIN Committed by GitHub
Browse files

[Sparse][Misc] Lower test_hgnn threshold to avoid spurious failures (#6827)

parent 35e2d9a3
...@@ -68,7 +68,7 @@ def test_hgnn(): ...@@ -68,7 +68,7 @@ def test_hgnn():
out.returncode == 0 out.returncode == 0
), f"stdout: {out.stdout.decode('utf-8')}\nstderr: {out.stderr.decode('utf-8')}" ), f"stdout: {out.stdout.decode('utf-8')}\nstderr: {out.stderr.decode('utf-8')}"
stdout = out.stdout.decode("utf-8") stdout = out.stdout.decode("utf-8")
assert float(stdout[-5:]) > 0.66 assert float(stdout[-5:]) >= 0.65
def test_hypergraphatt(): def test_hypergraphatt():
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment