Skip to content
This repository was archived by the owner on Jul 24, 2023. It is now read-only.

Commit 7d67192

Browse files
committed
Fix tests
1 parent 9b406a7 commit 7d67192

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/AdldapTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ public function testConfigurationNotFoundException()
3333

3434
public function testRegistration()
3535
{
36-
$this->assertTrue(app()->register('Adldap\Laravel\AdldapServiceProvider'));
37-
$this->assertTrue(app()->register('Adldap\Laravel\AdldapAuthServiceProvider'));
36+
$this->assertInstanceOf(\Adldap\Laravel\AdldapServiceProvider::class, app()->register(\Adldap\Laravel\AdldapServiceProvider::class));
37+
$this->assertInstanceOf(\Adldap\Laravel\AdldapAuthServiceProvider::class, app()->register(\Adldap\Laravel\AdldapAuthServiceProvider::class));
3838
}
3939

4040
public function testContractResolve()

0 commit comments

Comments
 (0)