(self, msgid, msgstr)
| 1858 | self.addCleanup(deactivate) |
| 1859 | |
| 1860 | def assertGettext(self, msgid, msgstr): |
| 1861 | result = gettext(msgid) |
| 1862 | self.assertIn( |
| 1863 | msgstr, |
| 1864 | result, |
| 1865 | "The string '%s' isn't in the translation of '%s'; the actual result is " |
| 1866 | "'%s'." % (msgstr, msgid, result), |
| 1867 | ) |
| 1868 | |
| 1869 | |
| 1870 | class AppResolutionOrderI18NTests(ResolutionOrderI18NTests): |
no test coverage detected