From 48d0ddcbe49df3b26295d1424768db73a978170d Mon Sep 17 00:00:00 2001 From: Dwight Watson Date: Thu, 7 Nov 2019 09:44:48 +1100 Subject: [PATCH] Fix class capitalisation --- tests/Container/UtilTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Container/UtilTest.php b/tests/Container/UtilTest.php index 4bc2ef30e0e6..0220919a35fa 100644 --- a/tests/Container/UtilTest.php +++ b/tests/Container/UtilTest.php @@ -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'; })); }