Skip to content

Commit d04c209

Browse files
committed
Reformatted code
1 parent 99fe6b0 commit d04c209

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scala-core-8/src/test/scala-2/com/baeldung/scala/strings/CaseInsensitiveStringComparisonUnitTest.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ class CaseInsensitiveStringComparisonUnitTest extends AnyFlatSpec with Matchers
88
"operating equals ignore case method on a string" should "return true if strings are the same when ignoring case" in {
99
val str = "Hello World"
1010
val result = str.equalsIgnoreCase("hello world")
11-
result should be (true)
11+
result should be(true)
1212
}
1313

1414
"operating toLowerCase.contains on a string" should "return if strings are the same when ignoring case" in {

0 commit comments

Comments
 (0)