Skip to content

Commit

Permalink
Data.Base16: fix test: encode return small case
Browse files Browse the repository at this point in the history
  • Loading branch information
tsuyoshicho committed Dec 30, 2024
1 parent f60cead commit a37242a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions test/Data/Base16.vimspec
Original file line number Diff line number Diff line change
Expand Up @@ -14,19 +14,19 @@ Describe Data.Base16
Assert Equals(B.encode("f" ), '66' )
End
It encode string RFC Test Vector 3. (reverse pattern)
Assert Equals(B.encode("fo" ), '666F' )
Assert Equals(B.encode("fo" ), '666f' )
End
It encode string RFC Test Vector 4. (reverse pattern)
Assert Equals(B.encode("foo" ), '666F6F' )
Assert Equals(B.encode("foo" ), '666f6f' )
End
It encode string RFC Test Vector 5. (reverse pattern)
Assert Equals(B.encode("foob" ), '666F6F62' )
Assert Equals(B.encode("foob" ), '666f6f62' )
End
It encode string RFC Test Vector 6. (reverse pattern)
Assert Equals(B.encode("fooba" ), '666F6F6261' )
Assert Equals(B.encode("fooba" ), '666f6f6261' )
End
It encode string RFC Test Vector 7. (reverse pattern)
Assert Equals(B.encode("foobar"), '666F6F626172')
Assert Equals(B.encode("foobar"), '666f6f626172')
End
End

Expand Down

0 comments on commit a37242a

Please sign in to comment.