Skip to content

Commit

Permalink
Merge pull request #30528 from dwightwatson/capitalisation
Browse files Browse the repository at this point in the history
[6.x] Fix class name capitalisation
  • Loading branch information
GrahamCampbell authored Nov 7, 2019
2 parents fbdd396 + 48d0ddc commit f6b4d8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Container/UtilTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class UtilTest extends TestCase
public function testUnwrapIfClosure()
{
$this->assertSame('foo', Util::unwrapIfClosure('foo'));
$this->assertSame('foo', UtiL::unwrapIfClosure(function () {
$this->assertSame('foo', Util::unwrapIfClosure(function () {
return 'foo';
}));
}
Expand Down

0 comments on commit f6b4d8e

Please sign in to comment.