Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down