From: Dan Brown Date: Sat, 23 Jul 2022 11:08:55 +0000 (+0100) Subject: Fixed failing license test X-Git-Tag: v22.07~1^2~19 X-Git-Url: http://source.bookstackapp.com/bookstack/commitdiff_plain/67d12cc1dff286f25ee0a99eaad6158285810932 Fixed failing license test --- 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); } }