do not return $this

This commit is contained in:
Tom Witkowski
2020-06-21 18:27:43 +02:00
parent a47ad6a1d3
commit bff97418ed

View File

@ -8,8 +8,6 @@ uses(Macroable::class);
beforeEach(function () { beforeEach(function () {
$this->macro('bar', function () { $this->macro('bar', function () {
assertInstanceOf(TestCase::class, $this); assertInstanceOf(TestCase::class, $this);
return $this;
}); });
}); });