Skip to content

Commit c1a4061

Browse files
committed
remove failng markers from test_urllib
1 parent 6fdc51e commit c1a4061

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

Lib/test/test_urllib.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -372,8 +372,6 @@ def test_willclose(self):
372372
finally:
373373
self.unfakehttp()
374374

375-
# TODO: RUSTPYTHON
376-
@unittest.expectedFailure
377375
@unittest.skipUnless(ssl, "ssl module required")
378376
def test_url_path_with_control_char_rejected(self):
379377
for char_no in list(range(0, 0x21)) + [0x7f]:
@@ -401,8 +399,6 @@ def test_url_path_with_control_char_rejected(self):
401399
finally:
402400
self.unfakehttp()
403401

404-
# TODO: RUSTPYTHON
405-
@unittest.expectedFailure
406402
@unittest.skipUnless(ssl, "ssl module required")
407403
def test_url_path_with_newline_header_injection_rejected(self):
408404
self.fakehttp(b"HTTP/1.1 200 OK\r\n\r\nHello.")
@@ -429,8 +425,6 @@ def test_url_path_with_newline_header_injection_rejected(self):
429425
finally:
430426
self.unfakehttp()
431427

432-
# TODO: RUSTPYTHON
433-
@unittest.expectedFailure
434428
@unittest.skipUnless(ssl, "ssl module required")
435429
def test_url_host_with_control_char_rejected(self):
436430
for char_no in list(range(0, 0x21)) + [0x7f]:
@@ -448,8 +442,6 @@ def test_url_host_with_control_char_rejected(self):
448442
finally:
449443
self.unfakehttp()
450444

451-
# TODO: RUSTPYTHON
452-
@unittest.expectedFailure
453445
@unittest.skipUnless(ssl, "ssl module required")
454446
def test_url_host_with_newline_header_injection_rejected(self):
455447
self.fakehttp(b"HTTP/1.1 200 OK\r\n\r\nHello.")

0 commit comments

Comments
 (0)