Merge pull request #2016

d1db3251 Fix overlooked renaming of Português in the unit tests (Nano Akron)
This commit is contained in:
Riccardo Spagni
2017-05-30 21:13:22 +02:00

View File

@@ -192,9 +192,9 @@ TEST(mnemonics, language_detection_with_bad_checksum)
res = crypto::ElectrumWords::words_to_bytes(base_seed, key, language_name);
ASSERT_EQ(true, res);
ASSERT_STREQ(language_name.c_str(), "Portuguese");
ASSERT_STREQ(language_name.c_str(), "Português");
res = crypto::ElectrumWords::words_to_bytes(base_seed + " " + real_checksum, key, language_name);
ASSERT_EQ(true, res);
ASSERT_STREQ(language_name.c_str(), "Portuguese");
ASSERT_STREQ(language_name.c_str(), "Português");
}