Skip to content

Commit

Permalink
Unit test update for object naming
Browse files Browse the repository at this point in the history
  • Loading branch information
Vítězslav Dvořák committed Nov 10, 2023
1 parent d77c3c5 commit 9e88bd3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/src/Ease/BrickTest.php
Expand Up @@ -62,7 +62,7 @@ public function testSetObjectName()
$this->object->setMyKey(123);
$this->object->setObjectName();
$this->assertEquals(
get_class($this->object) . '@123',
'123@' . get_class($this->object),
$this->object->getObjectName()
);
$this->object->setObjectName('customBrick');
Expand Down

0 comments on commit 9e88bd3

Please sign in to comment.