We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8da8d3f commit ca5d760Copy full SHA for ca5d760
1 file changed
test/classes/ExportTest.php
@@ -13,6 +13,8 @@
13
14
use function htmlspecialchars;
15
16
+use const ENT_COMPAT;
17
+
18
/**
19
* @covers \PhpMyAdmin\Export
20
* @group large
@@ -180,7 +182,7 @@ public function testExportDatabase(): void
180
182
181
183
SQL;
184
- $this->assertSame(htmlspecialchars($expected), $this->getActualOutputForAssertion());
185
+ $this->assertSame(htmlspecialchars($expected, ENT_COMPAT), $this->getActualOutputForAssertion());
186
}
187
188
public function testExportServer(): void
@@ -258,6 +260,6 @@ public function testExportServer(): void
258
260
259
261
262
263
264
265
0 commit comments