Skip to content

Commit ba63419

Browse files
committed
[EAV] keep unit test code consistency
1 parent 115dd3b commit ba63419

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

More/EAV/Tests/ValueTest.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ public function testSetGetAttribute()
4040
$value->setName('Silver');
4141
$this->assertSame($attribute, $value->getAttribute());
4242

43-
$this->assertSame($attribute, $value->setAttribute($attribute)->getAttribute());
43+
$value->setAttribute($attribute);
44+
$this->assertSame($attribute, $value->getAttribute());
4445
}
4546
}

0 commit comments

Comments
 (0)