summaryrefslogtreecommitdiff
path: root/test/ByteUtilsSpec.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/ByteUtilsSpec.scala')
-rw-r--r--test/ByteUtilsSpec.scala16
1 files changed, 8 insertions, 8 deletions
diff --git a/test/ByteUtilsSpec.scala b/test/ByteUtilsSpec.scala
index 8c7c7c9..4b63426 100644
--- a/test/ByteUtilsSpec.scala
+++ b/test/ByteUtilsSpec.scala
@@ -14,7 +14,7 @@ class ByteUtilsSpec extends IxeeSpec {
"when the destination is >= the source in range" - {
- "losslessly converts to the destination type" - {
+ "losslessly converts to the destination type" in {
}
@@ -22,7 +22,7 @@ class ByteUtilsSpec extends IxeeSpec {
"when the destination is smaller than the source" - {
- "throws an exception TODO: make it a Try?" - {
+ "throws an exception TODO: make it a Try?" in {
}
@@ -32,7 +32,7 @@ class ByteUtilsSpec extends IxeeSpec {
".truncatedTo" - {
- "converts to the target type, truncating extra bytes" - {
+ "converts to the target type, truncating extra bytes" in {
}
@@ -40,7 +40,7 @@ class ByteUtilsSpec extends IxeeSpec {
".byteSize" - {
- "returns the size of a the type, in bytes" - {
+ "returns the size of a the type, in bytes" in {
}
@@ -48,7 +48,7 @@ class ByteUtilsSpec extends IxeeSpec {
".bitSize" - {
- "returns the size of a type, in bits" - {
+ "returns the size of a type, in bits" in {
}
@@ -58,7 +58,7 @@ class ByteUtilsSpec extends IxeeSpec {
"BitOps" - {
- "provides typed operations that don't upcast to Int" - {
+ "provides typed operations that don't upcast to Int" in {
}
@@ -66,7 +66,7 @@ class ByteUtilsSpec extends IxeeSpec {
"toByteArray TODO: toByteSeq?" - {
- "returns the value as an array of bytes TODO: endianness?" - {
+ "returns the value as an array of bytes TODO: endianness?" in {
}
@@ -74,7 +74,7 @@ class ByteUtilsSpec extends IxeeSpec {
"toBinaryString" - {
- "returns the value as a string of 1s and 0s, padded to the full size" - {
+ "returns the value as a string of 1s and 0s, padded to the full size" in {
}