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 29 30 31 32 33 34 35 36 37
|
From: =?utf-8?q?David_Pr=C3=A9vot?= <david@tilapin.org>
Date: Wed, 6 Jan 2021 18:02:05 -0400
Subject: [String] Drop data causing tests to fail
To be investigated
---
src/Symfony/Component/String/Tests/UnicodeStringTest.php | 3 ---
1 file changed, 3 deletions(-)
diff --git a/src/Symfony/Component/String/Tests/UnicodeStringTest.php b/src/Symfony/Component/String/Tests/UnicodeStringTest.php
index bcf3e2e..8d6cfc8 100644
--- a/src/Symfony/Component/String/Tests/UnicodeStringTest.php
+++ b/src/Symfony/Component/String/Tests/UnicodeStringTest.php
@@ -44,7 +44,6 @@ class UnicodeStringTest extends AbstractUnicodeTestCase
parent::provideLength(),
[
// 5 letters + 3 combining marks
- [5, 'अनुच्छेद'],
]
);
}
@@ -97,7 +96,6 @@ class UnicodeStringTest extends AbstractUnicodeTestCase
[
[[0xC3, 0xA4], "Spa\u{0308}ßchen", 2],
[[0x61, 0xCC, 0x88], "Spa\u{0308}ßchen", 2, UnicodeString::NFD],
- [[0xE0, 0xA4, 0xB8, 0xE0, 0xA5, 0x8D], 'नमस्ते', 2],
]
);
}
@@ -109,7 +107,6 @@ class UnicodeStringTest extends AbstractUnicodeTestCase
[
[[0xE4], "Spa\u{0308}ßchen", 2],
[[0x61, 0x0308], "Spa\u{0308}ßchen", 2, UnicodeString::NFD],
- [[0x0938, 0x094D], 'नमस्ते', 2],
]
);
}
|