Skip to content

Commit

Permalink
Fixup whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
swankjesse committed Jun 20, 2023
1 parent cc942ba commit 2ad2bf5
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ internal class ZiplineApiTomlReaderTest {
| # fun echo(kotlin.String): kotlin.String
| "1acbabc2",
|]
""".trimMargin()
""".trimMargin(),
)

val ziplineApi = toml.readZiplineApi()
Expand All @@ -54,8 +54,8 @@ internal class ZiplineApiTomlReaderTest {
),
),
),
)
)
),
),
)
}

Expand All @@ -67,7 +67,7 @@ internal class ZiplineApiTomlReaderTest {
|functions = [ "abc21acx" ]
|[com.example.Service2]
|functions = [ "1acbabc2" ]
""".trimMargin()
""".trimMargin(),
)

val ziplineApi = toml.readZiplineApi()
Expand All @@ -82,8 +82,8 @@ internal class ZiplineApiTomlReaderTest {
name = "com.example.Service2",
functions = listOf(TomlZiplineFunction("", "1acbabc2")),
),
)
)
),
),
)
}

Expand All @@ -105,7 +105,7 @@ internal class ZiplineApiTomlReaderTest {
| "1acbabc2",
|# comment after the last function ID
|] # comment at the end of the file
""".trimMargin()
""".trimMargin(),
)

val ziplineApi = toml.readZiplineApi()
Expand All @@ -125,8 +125,8 @@ internal class ZiplineApiTomlReaderTest {
),
),
),
)
)
),
),
)
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ internal class ZiplineApiTomlWriterTest {
),
),
),
)
)
),
),
)
}

Expand All @@ -56,7 +56,8 @@ internal class ZiplineApiTomlWriterTest {
| # fun echo(kotlin.String): kotlin.String
| "1acbabc2",
|]
|""".trimMargin()
|
""".trimMargin(),
)
}

Expand All @@ -74,8 +75,8 @@ internal class ZiplineApiTomlWriterTest {
name = "com.example.Service2",
functions = listOf(TomlZiplineFunction("", "1acbabc2")),
),
)
)
),
),
)
}

Expand All @@ -92,7 +93,8 @@ internal class ZiplineApiTomlWriterTest {
|functions = [
| "1acbabc2",
|]
|""".trimMargin()
|
""".trimMargin(),
)
}
}

0 comments on commit 2ad2bf5

Please sign in to comment.