Skip to content

Commit

Permalink
Fix typo (#115)
Browse files Browse the repository at this point in the history
* fix(CsvReaderTest): typo

* fix(StringReaderTest): typo

* fix(CsvWriterTest): typo

Co-authored-by: satokuuuuuun <[email protected]>
  • Loading branch information
satou-aaaaa and satokuuuuuun authored Jan 10, 2023
1 parent 8248323 commit f7fa08f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
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

0 comments on commit f7fa08f

Please sign in to comment.