Skip to content

Commit 6aab767

Browse files
committed
Updated branch and reformatted again
1 parent c8b74a2 commit 6aab767

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

scala-test/src/test/scala-2/com/baeldung/scala/scalatest/stringtest/CaseInsensitiveStringComparisonUnitTest.scala

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@ package com.baeldung.scala.scalatest.stringtest
33
import org.scalatest.flatspec.AnyFlatSpec
44
import org.scalatest.matchers.should.Matchers
55

6-
class CaseInsensitiveStringComparisonUnitTest extends AnyFlatSpec with Matchers {
6+
class CaseInsensitiveStringComparisonUnitTest
7+
extends AnyFlatSpec
8+
with Matchers {
79
"operating equals ignore case method on a string" should "return true if strings are the same when ignoring case" in {
810
val str = "Hello World"
911
val result = str.equalsIgnoreCase("hello world")

0 commit comments

Comments
 (0)