Skip to content

Commit

Permalink
Fix test with sort
Browse files Browse the repository at this point in the history
  • Loading branch information
muglug committed Mar 14, 2022
1 parent e578413 commit a9ccfd3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/AlgebraTest.php
Expand Up @@ -73,8 +73,8 @@ public function testNegateFormula(): void
$negated_formula = Algebra::negateFormula($formula);

$this->assertCount(3, $negated_formula);
$this->assertSame('$a is not string', (string)$negated_formula[0]);
$this->assertSame('$a is not int', (string)$negated_formula[1]);
$this->assertSame('$a is not int', (string)$negated_formula[0]);
$this->assertSame('$a is not string', (string)$negated_formula[1]);
$this->assertSame('!$b', (string)$negated_formula[2]);
}

Expand Down

0 comments on commit a9ccfd3

Please sign in to comment.