Skip to content

Commit

Permalink
Fix up bad asserts.
Browse files Browse the repository at this point in the history
  • Loading branch information
dereuromark committed Sep 21, 2020
1 parent b0f2769 commit ac8b542
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public function testToCriteriaShouldReturnEmptyCriteriaWhenNothingWasSet(): void
$this->assertInstanceOf(Criteria::class, $propelCriteria);
$this->assertSame(-1, $propelCriteria->getLimit());
$this->assertSame(0, $propelCriteria->getOffset());
$this->assertEquals([], $propelCriteria->getOrderByColumns());
$this->assertSame([], $propelCriteria->getOrderByColumns());
}

/**
Expand Down

0 comments on commit ac8b542

Please sign in to comment.