Skip to content

Commit

Permalink
test(cnr client test): add output of plain response
Browse files Browse the repository at this point in the history
  • Loading branch information
KaiSchwarz-cnic committed Nov 20, 2024
1 parent 89046dd commit 9d26422
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/CNR/ClientTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ public function testLoginRoleCredsOK(): void
self::$cl->setRoleCredentials(self::$user, self::$role, self::$rolepw);
$r = self::$cl->login();
$this->assertInstanceOf(R::class, $r);
$this->assertEquals($r->isSuccess(), true);
$this->assertEquals($r->isSuccess(), true, $r->getPlain());
$rec = $r->getRecord(0);
$this->assertNotNull($rec);
$this->assertNotNull($rec->getDataByKey("SESSIONID"));
Expand Down

0 comments on commit 9d26422

Please sign in to comment.