Skip to content

Commit 864d255

Browse files
committed
unksip test_unicode.py
1 parent 52e8342 commit 864d255

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Lib/test/test_unicode.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,8 @@ def test_count(self):
199199
self.checkequal(0, 'a' * 10, 'count', 'a\U00100304')
200200
self.checkequal(0, '\u0102' * 10, 'count', '\u0102\U00100304')
201201

202-
@unittest.skip("TODO: RUSTPYTHON")
202+
# TODO: RUSTPYTHON
203+
@unittest.expectedFailure
203204
def test_find(self):
204205
string_tests.CommonTest.test_find(self)
205206
# test implementation details of the memchr fast path
@@ -231,7 +232,6 @@ def test_find(self):
231232
self.checkequal(-1, 'a' * 100, 'find', 'a\U00100304')
232233
self.checkequal(-1, '\u0102' * 100, 'find', '\u0102\U00100304')
233234

234-
@unittest.skip("TODO: RUSTPYTHON")
235235
def test_rfind(self):
236236
string_tests.CommonTest.test_rfind(self)
237237
# test implementation details of the memrchr fast path

0 commit comments

Comments
 (0)