@@ -372,8 +372,6 @@ def test_willclose(self):
372
372
finally :
373
373
self .unfakehttp ()
374
374
375
- # TODO: RUSTPYTHON
376
- @unittest .expectedFailure
377
375
@unittest .skipUnless (ssl , "ssl module required" )
378
376
def test_url_path_with_control_char_rejected (self ):
379
377
for char_no in list (range (0 , 0x21 )) + [0x7f ]:
@@ -401,8 +399,6 @@ def test_url_path_with_control_char_rejected(self):
401
399
finally :
402
400
self .unfakehttp ()
403
401
404
- # TODO: RUSTPYTHON
405
- @unittest .expectedFailure
406
402
@unittest .skipUnless (ssl , "ssl module required" )
407
403
def test_url_path_with_newline_header_injection_rejected (self ):
408
404
self .fakehttp (b"HTTP/1.1 200 OK\r \n \r \n Hello." )
@@ -429,8 +425,6 @@ def test_url_path_with_newline_header_injection_rejected(self):
429
425
finally :
430
426
self .unfakehttp ()
431
427
432
- # TODO: RUSTPYTHON
433
- @unittest .expectedFailure
434
428
@unittest .skipUnless (ssl , "ssl module required" )
435
429
def test_url_host_with_control_char_rejected (self ):
436
430
for char_no in list (range (0 , 0x21 )) + [0x7f ]:
@@ -448,8 +442,6 @@ def test_url_host_with_control_char_rejected(self):
448
442
finally :
449
443
self .unfakehttp ()
450
444
451
- # TODO: RUSTPYTHON
452
- @unittest .expectedFailure
453
445
@unittest .skipUnless (ssl , "ssl module required" )
454
446
def test_url_host_with_newline_header_injection_rejected (self ):
455
447
self .fakehttp (b"HTTP/1.1 200 OK\r \n \r \n Hello." )
0 commit comments