Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
stevebauman committed Apr 17, 2023
1 parent e52f535 commit 30563bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Unit/Models/ModelRelationTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ public function test_exists()
$this->assertTrue($relation->exists('foo'));
$this->assertTrue($relation->exists('cn=foo,dc=local,dc=com'));

$this->assertFalse($relation->exists());
$this->assertFalse($relation->exists(null));
$this->assertFalse($relation->exists($unrelated->newCollection([$unrelated])));
$this->assertFalse($relation->exists([$related, $unrelated]));
$this->assertFalse($relation->exists(['cn=foo,dc=local,dc=com', 'cn=bar,dc=local,dc=com']));
Expand Down

0 comments on commit 30563bb

Please sign in to comment.