diff --git a/catalyst_voices/packages/catalyst_voices_models/test/seed_phrase_test.dart b/catalyst_voices/packages/catalyst_voices_models/test/seed_phrase_test.dart index 401179fc6c..ae92c3ce32 100644 --- a/catalyst_voices/packages/catalyst_voices_models/test/seed_phrase_test.dart +++ b/catalyst_voices/packages/catalyst_voices_models/test/seed_phrase_test.dart @@ -27,7 +27,9 @@ void main() { }); test('should throw an error for an invalid word count', () { + expect(() => SeedPhrase(wordCount: 9), throwsA(isA())); expect(() => SeedPhrase(wordCount: 13), throwsA(isA())); + expect(() => SeedPhrase(wordCount: 27), throwsA(isA())); }); test('should create SeedPhrase from a valid mnemonic', () {