From 41115aaacb477f749e475016c3caabbea5c21b0d Mon Sep 17 00:00:00 2001 From: satokuuuuuun <51846075+satokuuuuuun@users.noreply.github.com> Date: Mon, 9 Jan 2023 21:01:23 +0900 Subject: [PATCH 1/3] fix(CsvReaderTest): typo --- .../com/github/doyaaaaaken/kotlincsv/client/CsvReaderTest.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/jvmTest/kotlin/com/github/doyaaaaaken/kotlincsv/client/CsvReaderTest.kt b/src/jvmTest/kotlin/com/github/doyaaaaaken/kotlincsv/client/CsvReaderTest.kt index 074644b..abb007a 100644 --- a/src/jvmTest/kotlin/com/github/doyaaaaaken/kotlincsv/client/CsvReaderTest.kt +++ b/src/jvmTest/kotlin/com/github/doyaaaaaken/kotlincsv/client/CsvReaderTest.kt @@ -47,7 +47,7 @@ class CsvReaderTest : WordSpec({ ) result shouldBe listOf(listOf("a", "b", "c"), listOf("d", "e", "f")) } - "read csv with line separater" { + "read csv with line separator" { val result = csvReader().readAll( """a,b,c,"x","y | hoge" From 5e96c99e62f8b409dfd6b827cd82e64c8cb051e4 Mon Sep 17 00:00:00 2001 From: satokuuuuuun <51846075+satokuuuuuun@users.noreply.github.com> Date: Mon, 9 Jan 2023 21:01:53 +0900 Subject: [PATCH 2/3] fix(StringReaderTest): typo --- .../com/github/doyaaaaaken/kotlincsv/client/StringReaderTest.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/jvmTest/kotlin/com/github/doyaaaaaken/kotlincsv/client/StringReaderTest.kt b/src/jvmTest/kotlin/com/github/doyaaaaaken/kotlincsv/client/StringReaderTest.kt index 93131a0..16210b6 100644 --- a/src/jvmTest/kotlin/com/github/doyaaaaaken/kotlincsv/client/StringReaderTest.kt +++ b/src/jvmTest/kotlin/com/github/doyaaaaaken/kotlincsv/client/StringReaderTest.kt @@ -19,7 +19,7 @@ class StringReaderTest : WordSpec({ ) result shouldBe listOf(listOf("a", "b", "c"), listOf("d", "e", "f")) } - "read csv with line separater" { + "read csv with line separator" { val result = readAll( """a,b,c,"x","y | hoge" From 75c54cf8b1fab82b9ce6a6da0aeb6a4318fda5eb Mon Sep 17 00:00:00 2001 From: satokuuuuuun <51846075+satokuuuuuun@users.noreply.github.com> Date: Mon, 9 Jan 2023 21:02:34 +0900 Subject: [PATCH 3/3] fix(CsvWriterTest): typo --- .../com/github/doyaaaaaken/kotlincsv/client/CsvWriterTest.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/jvmTest/kotlin/com/github/doyaaaaaken/kotlincsv/client/CsvWriterTest.kt b/src/jvmTest/kotlin/com/github/doyaaaaaken/kotlincsv/client/CsvWriterTest.kt index 2b6b3ef..049e0d0 100644 --- a/src/jvmTest/kotlin/com/github/doyaaaaaken/kotlincsv/client/CsvWriterTest.kt +++ b/src/jvmTest/kotlin/com/github/doyaaaaaken/kotlincsv/client/CsvWriterTest.kt @@ -143,7 +143,7 @@ class CsvWriterTest : WordSpec({ val actual = readTestFile(Charset.forName("SJIS")) actual shouldBe "あ,い\r\n" } - "write csv with '|' demimiter" { + "write csv with '|' delimiter" { val row1 = listOf("a", "b") val row2 = listOf("c", "d") val expected = "a|b\r\nc|d\r\n"