1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
From: =?utf-8?q?David_Pr=C3=A9vot?= <taffit@debian.org>
Date: Thu, 6 Nov 2025 18:53:15 +0100
Subject: Update expected output, again
Bug-Debian: https://bugs.debian.org/1120215
Forwarded: no
---
tests/EncodingTest.php | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/tests/EncodingTest.php b/tests/EncodingTest.php
index aef3554..c3503ac 100644
--- a/tests/EncodingTest.php
+++ b/tests/EncodingTest.php
@@ -23,11 +23,11 @@ class EncodingTest extends TestCase
'<p>ASCII only</p>',
];
yield [
- '<html><body><p>Twoje zamówienie oczekuje na wpłatę zadatku 🇳🇱</p></body></html>',
+ '<html><body><p>Twoje zamówienie oczekuje na wpłatę zadatku 🇳🇱</p></body></html>',
'<p>Twoje zamówienie oczekuje na wpłatę zadatku 🇳🇱</p>',
];
yield [
- '<html><body><p>Привет мир!</p></body></html>',
+ '<html><body><p>Привет мир!</p></body></html>',
'<p>Привет мир!</p>',
];
}
|