Skip to content

Commit aae43a9

Browse files
committed
Unmark some expected failures now that windows has lf
1 parent a9d31a4 commit aae43a9

File tree

2 files changed

+0
-8
lines changed

2 files changed

+0
-8
lines changed

Lib/test/test_difflib.py

-4
Original file line numberDiff line numberDiff line change
@@ -244,10 +244,6 @@ def test_html_diff(self):
244244
with open(findfile('test_difflib_expect.html')) as fp:
245245
self.assertEqual(actual, fp.read())
246246

247-
# TODO: RUSTPYTHON
248-
if sys.platform == "win32":
249-
test_html_diff = unittest.expectedFailure(test_html_diff)
250-
251247
def test_recursion_limit(self):
252248
# Check if the problem described in patch #1413711 exists.
253249
limit = sys.getrecursionlimit()

Lib/test/test_imp.py

-4
Original file line numberDiff line numberDiff line change
@@ -100,10 +100,6 @@ def test_issue1267(self):
100100
self.assertEqual(fp.readline(),
101101
'"""Tokenization help for Python programs.\n')
102102

103-
# TODO: RUSTPYTHON
104-
if sys.platform == 'win32':
105-
test_issue1267 = unittest.expectedFailure(test_issue1267)
106-
107103
def test_issue3594(self):
108104
temp_mod_name = 'test_imp_helper'
109105
sys.path.insert(0, '.')

0 commit comments

Comments
 (0)