diff options
Diffstat (limited to 'test/ConversionUtilsSpec.scala')
-rw-r--r-- | test/ConversionUtilsSpec.scala | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/ConversionUtilsSpec.scala b/test/ConversionUtilsSpec.scala index d6c17b3..74a5b89 100644 --- a/test/ConversionUtilsSpec.scala +++ b/test/ConversionUtilsSpec.scala @@ -9,7 +9,7 @@ class ConversionUtilsSpec extends FreeSpec with MustMatchers { "ConversionUtils" - { ".hexStr2Bytes" - { - "converts a hexadecimal string to an equivalent iterator of bytes" - { + "converts a hexadecimal string to an equivalent iterator of bytes" in { hexStr2Bytes("12348765").toArray must equal( Array[Byte]( 0x12.toByte, @@ -21,7 +21,7 @@ class ConversionUtilsSpec extends FreeSpec with MustMatchers { } "when the string is not an even length" - { - "prepends a 0" - { + "prepends a 0" in { hexStr2Bytes("2123").toArray must equal(hexStr2Bytes("0123").toArray) } } |