Skip to content

Commit

Permalink
Remove flaky test
Browse files Browse the repository at this point in the history
Ref. eng/recordflux/RecordFlux#1579
  • Loading branch information
treiher committed Apr 15, 2024
1 parent 6697b28 commit 8f53b42
Showing 1 changed file with 0 additions and 14 deletions.
14 changes: 0 additions & 14 deletions tests/unit/expression_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
import pytest
import z3

import rflx
from rflx import ada, ir, typing_ as rty
from rflx.error import FatalError, Location, RecordFluxError
from rflx.expression import (
Expand Down Expand Up @@ -3141,19 +3140,6 @@ def test_proof_invalid_logic() -> None:
]


def test_proof_timeout(monkeypatch: pytest.MonkeyPatch) -> None:
monkeypatch.setattr(rflx.expression, "PROVER_TIMEOUT", 1)
expr = Less(Mod(Variable("X"), Variable("Y")), Number(100))
p = Proof(expr)
assert p.result == ProofResult.UNKNOWN
assert p.error == [
(
"timeout",
None,
),
]


def test_case_variables() -> None:
assert_equal(
CaseExpr(
Expand Down

0 comments on commit 8f53b42

Please sign in to comment.