]> BookStack Code Mirror - bookstack/blobdiff - tests/Entity/PageContentTest.php
Fix "Ubunto Mono" $mono type misspelling
[bookstack] / tests / Entity / PageContentTest.php
index 7aeaf0012a023eb4657f13f236bf4ff51b84e208..d3b6224c4192b653586c55644154c0d4f62f8074 100644 (file)
@@ -312,10 +312,10 @@ class PageContentTest extends TestCase
         $this->actingAs($this->getAdmin())
             ->put($page->getUrl(''), [
                 'name' => 'Testing',
-                'html' => '<p>Hello &amp; welcome</p>',
+                'html' => '<p>&quot;Hello &amp; welcome&quot;</p>',
             ]);
 
         $page->refresh();
-        $this->assertEquals('Hello & welcome', $page->text);
+        $this->assertEquals('"Hello & welcome"', $page->text);
     }
 }