Skip to content

Commit 8dd1324

Browse files
committed
scalafmt
1 parent d60cf31 commit 8dd1324

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

scala-core-modules/scala-strings-2/src/test/scala/com/baeldung/scala/strings/removemultispace/RemoveMultipleSpacesUnitTest.scala

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import org.scalatest.prop.TableDrivenPropertyChecks
66

77
class RemoveMultipleSpacesUnitTest
88
extends AnyFlatSpec
9-
with Matchers
10-
with TableDrivenPropertyChecks {
9+
with Matchers
10+
with TableDrivenPropertyChecks {
1111

1212
private val table = Table(
1313
("input string", "expected"),
@@ -22,7 +22,7 @@ class RemoveMultipleSpacesUnitTest
2222
("usingReplaceAll", RemoveMultipleSpaces.usingReplaceAll),
2323
("usingSplit", RemoveMultipleSpaces.usingSplit),
2424
("usingZip", RemoveMultipleSpaces.usingZip),
25-
("usingStringBuilder", RemoveMultipleSpaces.usingStringBuilder),
25+
("usingStringBuilder", RemoveMultipleSpaces.usingStringBuilder)
2626
)
2727
it should "remove multiple spaces with a single space in the string" in {
2828
forAll(table) { (input, expected) =>

0 commit comments

Comments
 (0)