def test_equality(self):
        a = PassportElementErrorTranslationFile(self.type_, self.file_hash,
                                                self.message)
        b = PassportElementErrorTranslationFile(self.type_, self.file_hash,
                                                self.message)
        c = PassportElementErrorTranslationFile(self.type_, '', '')
        d = PassportElementErrorTranslationFile('', self.file_hash, '')
        e = PassportElementErrorTranslationFile('', '', self.message)
        f = PassportElementErrorDataField(self.type_, '', '', self.message)

        assert a == b
        assert hash(a) == hash(b)
        assert a is not b

        assert a != c
        assert hash(a) != hash(c)

        assert a != d
        assert hash(a) != hash(d)

        assert a != e
        assert hash(a) != hash(e)

        assert a != f
        assert hash(a) != hash(f)
def passport_element_error_translation_file():
    return PassportElementErrorTranslationFile(
        TestPassportElementErrorTranslationFile.type_,
        TestPassportElementErrorTranslationFile.file_hash,
        TestPassportElementErrorTranslationFile.message,
    )