diff options
author | iximeow <me@iximeow.net> | 2014-11-21 01:22:03 -0800 |
---|---|---|
committer | iximeow <me@iximeow.net> | 2014-11-21 01:22:03 -0800 |
commit | 70e3bb3e08e8231543b0d154615ceb2d5e04c885 (patch) | |
tree | 4a0fe4909b6fe194c6e1ac501eabe28efad16558 /test/ConversionUtilsSpec.scala | |
parent | 7302f1965e4e34a692a2df27c74a2c325306119f (diff) |
Fix test expectation
Diffstat (limited to 'test/ConversionUtilsSpec.scala')
-rw-r--r-- | test/ConversionUtilsSpec.scala | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ConversionUtilsSpec.scala b/test/ConversionUtilsSpec.scala index 74a5b89..ec07cb0 100644 --- a/test/ConversionUtilsSpec.scala +++ b/test/ConversionUtilsSpec.scala @@ -22,7 +22,7 @@ class ConversionUtilsSpec extends FreeSpec with MustMatchers { "when the string is not an even length" - { "prepends a 0" in { - hexStr2Bytes("2123").toArray must equal(hexStr2Bytes("0123").toArray) + hexStr2Bytes("123").toArray must equal(hexStr2Bytes("0123").toArray) } } } |