There was an error while loading. Please reload this page.
1 parent 52e8342 commit 864d255Copy full SHA for 864d255
1 file changed
Lib/test/test_unicode.py
@@ -199,7 +199,8 @@ def test_count(self):
199
self.checkequal(0, 'a' * 10, 'count', 'a\U00100304')
200
self.checkequal(0, '\u0102' * 10, 'count', '\u0102\U00100304')
201
202
- @unittest.skip("TODO: RUSTPYTHON")
+ # TODO: RUSTPYTHON
203
+ @unittest.expectedFailure
204
def test_find(self):
205
string_tests.CommonTest.test_find(self)
206
# test implementation details of the memchr fast path
@@ -231,7 +232,6 @@ def test_find(self):
231
232
self.checkequal(-1, 'a' * 100, 'find', 'a\U00100304')
233
self.checkequal(-1, '\u0102' * 100, 'find', '\u0102\U00100304')
234
235
def test_rfind(self):
236
string_tests.CommonTest.test_rfind(self)
237
# test implementation details of the memrchr fast path
0 commit comments