Skip to content

Commit 14a9f0d

Browse files
committed
fix unit tests
1 parent efdb526 commit 14a9f0d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/test/kotlin/de/gmuth/ipp/core/IppAttributeTests.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ class IppAttributeTests {
113113

114114
@Test
115115
fun attributeToString() {
116-
assertEquals("foo (1setOf integer) = 1,2,3", IppAttribute("foo", Integer, 1, 2, 3).toString())
116+
assertEquals("foo (1setOf integer) = 1, 2, 3", IppAttribute("foo", Integer, 1, 2, 3).toString())
117117
}
118118

119119
@Test

src/test/kotlin/de/gmuth/ipp/core/IppCollectionTests.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ class IppCollectionTests {
1717

1818
@Test
1919
fun toStringValue() {
20-
assertEquals("{foo=a,b}", collection.toString())
20+
assertEquals("{foo=a, b}", collection.toString())
2121
}
2222

2323
@Test

0 commit comments

Comments
 (0)