@@ -385,7 +385,6 @@ def _test_plural_forms(self, ngettext, gettext,
385385 x = ngettext (singular , plural , None )
386386 self .assertEqual (x , tplural )
387387
388- @unittest .expectedFailure # TODO: RUSTPYTHON
389388 def test_plural_forms (self ):
390389 self ._test_plural_forms (
391390 self .ngettext , self .gettext ,
@@ -396,7 +395,6 @@ def test_plural_forms(self):
396395 '%d file deleted' , '%d files deleted' ,
397396 '%d file deleted' , '%d files deleted' )
398397
399- @unittest .expectedFailure # TODO: RUSTPYTHON
400398 def test_plural_context_forms (self ):
401399 ngettext = partial (self .npgettext , 'With context' )
402400 gettext = partial (self .pgettext , 'With context' )
@@ -409,7 +407,6 @@ def test_plural_context_forms(self):
409407 '%d file deleted' , '%d files deleted' ,
410408 '%d file deleted' , '%d files deleted' )
411409
412- @unittest .expectedFailure # TODO: RUSTPYTHON
413410 def test_plural_wrong_context_forms (self ):
414411 self ._test_plural_forms (
415412 partial (self .npgettext , 'Unknown context' ),
@@ -442,7 +439,6 @@ def setUp(self):
442439 self .pgettext = partial (gettext .dpgettext , 'gettext' )
443440 self .npgettext = partial (gettext .dnpgettext , 'gettext' )
444441
445- @unittest .expectedFailure # TODO: RUSTPYTHON
446442 def test_plural_forms_wrong_domain (self ):
447443 self ._test_plural_forms (
448444 partial (gettext .dngettext , 'unknown' ),
@@ -451,7 +447,6 @@ def test_plural_forms_wrong_domain(self):
451447 'There is %s file' , 'There are %s files' ,
452448 numbers_only = False )
453449
454- @unittest .expectedFailure # TODO: RUSTPYTHON
455450 def test_plural_context_forms_wrong_domain (self ):
456451 self ._test_plural_forms (
457452 partial (gettext .dnpgettext , 'unknown' , 'With context' ),
@@ -472,7 +467,6 @@ def setUp(self):
472467 self .pgettext = t .pgettext
473468 self .npgettext = t .npgettext
474469
475- @unittest .expectedFailure # TODO: RUSTPYTHON
476470 def test_plural_forms_null_translations (self ):
477471 t = gettext .NullTranslations ()
478472 self ._test_plural_forms (
@@ -481,7 +475,6 @@ def test_plural_forms_null_translations(self):
481475 'There is %s file' , 'There are %s files' ,
482476 numbers_only = False )
483477
484- @unittest .expectedFailure # TODO: RUSTPYTHON
485478 def test_plural_context_forms_null_translations (self ):
486479 t = gettext .NullTranslations ()
487480 self ._test_plural_forms (
0 commit comments