Skip to content

Commit 158efac

Browse files
authored
Fix tests
1 parent 811621b commit 158efac

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/OrgManagerTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public function you_can_set_client()
4141
{
4242
$newClient = new Client();
4343
$this->assertInstanceOf(Client::class, $newClient);
44-
$this->assertNotEquals($this->orgmanager->client, $newClient);
44+
$this->assertNotEquals($this->orgmanager->getClient(), $newClient);
4545
$this->orgmanager->setClient($newClient);
4646
$this->assertEquals($newClient, $this->orgmanager->client);
4747
}

0 commit comments

Comments
 (0)