File tree Expand file tree Collapse file tree 1 file changed +2
-6
lines changed Expand file tree Collapse file tree 1 file changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -22,12 +22,8 @@ describe("Bip39", () => {
2222 // invalid input length
2323 expect ( ( ) => Bip39 . encode ( fromHex ( "" ) ) ) . toThrowError ( / g o t l e n g t h / ) ;
2424 expect ( ( ) => Bip39 . encode ( fromHex ( "00" ) ) ) . toThrowError ( / g o t l e n g t h / ) ;
25- expect ( ( ) => Bip39 . encode ( fromHex ( "000000000000000000000000000000" ) ) ) . toThrowError (
26- / g o t l e n g t h / ,
27- ) ;
28- expect ( ( ) => Bip39 . encode ( fromHex ( "0000000000000000000000000000000000" ) ) ) . toThrowError (
29- / g o t l e n g t h / ,
30- ) ;
25+ expect ( ( ) => Bip39 . encode ( fromHex ( "000000000000000000000000000000" ) ) ) . toThrowError ( / g o t l e n g t h / ) ;
26+ expect ( ( ) => Bip39 . encode ( fromHex ( "0000000000000000000000000000000000" ) ) ) . toThrowError ( / g o t l e n g t h / ) ;
3127 expect ( ( ) => Bip39 . encode ( fromHex ( "0000000000000000000000000000000000000000000000" ) ) ) . toThrowError (
3228 / g o t l e n g t h / ,
3329 ) ;
You can’t perform that action at this time.
0 commit comments