From 67d12cc1dff286f25ee0a99eaad6158285810932 Mon Sep 17 00:00:00 2001 From: Dan Brown Date: Sat, 23 Jul 2022 12:08:55 +0100 Subject: [PATCH] Fixed failing license test --- tests/HelpTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/HelpTest.php b/tests/HelpTest.php index bf883bd39..cd983dbeb 100644 --- a/tests/HelpTest.php +++ b/tests/HelpTest.php @@ -18,6 +18,6 @@ class HelpTest extends TestCase $this->assertTrue(file_exists($expectedPath)); $contents = file_get_contents($expectedPath); - $this->assertStringContainsString('GNU LESSER GENERAL PUBLIC LICENSE', $contents); + $this->assertStringContainsString('MIT License', $contents); } }