Skip to content

Commit

Permalink
Merge pull request #13 from Azumabashi/use-check-in-test
Browse files Browse the repository at this point in the history
use check instead of echo in test
  • Loading branch information
Azumabashi authored Aug 21, 2023
2 parents 1738540 + 993615a commit 0426e46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/testSimplification.nim
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ suite "make logical formula simple":
simplerFormula = formula.simplification()

test "checking logical equivalence":
echo (formula => simplerFormula).isTautology() and (simplerFormula => formula).isTautology()
check (formula => simplerFormula).isTautology() and (simplerFormula => formula).isTautology()

0 comments on commit 0426e46

Please sign in to comment.