From: Michael <heluecht@pirati.ca>
Date: Sat, 12 Oct 2019 10:56:16 +0000 (+0000)
Subject: Making test working again (reverting the last change)
X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=9c933aacd24da8fe983cb847e959a62fdc167b80;p=friendica.git

Making test working again (reverting the last change)
---

diff --git a/tests/src/Util/StringsTest.php b/tests/src/Util/StringsTest.php
index 03bc88d74c..d090b1c5dd 100644
--- a/tests/src/Util/StringsTest.php
+++ b/tests/src/Util/StringsTest.php
@@ -78,7 +78,7 @@ class StringsTest extends TestCase
 
 		$this->assertEquals('[submit type="button" onclick="alert(\'failed!\');" /]', $validstring);
 		$this->assertEquals(
-			'&lt;submit type&equals;&quot;button&quot; onclick&equals;&quot;alert&lpar;&apos;failed&excl;&apos;&rpar;&semi;&quot; &sol;&gt;',
+			"&lt;submit type=&quot;button&quot; onclick=&quot;alert('failed!');&quot; /&gt;",
 			$escapedString
 		);
 	}