Skip to content

Commit

Permalink
fix typo in example tests (Exmaple => Example) (#1553)
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinBoyette authored Mar 22, 2024
1 parent 2e0b945 commit 330081d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import org.scalatest.flatspec.AnyFlatSpec
import org.scalatest.matchers.must.Matchers

class ScalaTestExampleTest extends AnyFlatSpec with Matchers {
"Exmaple" should "pass" in {
"Example" should "pass" in {
1 must be(1)
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import org.scalatest.flatspec.AnyFlatSpec
import org.scalatest.matchers.must.Matchers

class ExampleTest extends AnyFlatSpec with Matchers {
"Exmaple" should "pass" in {
"Example" should "pass" in {
1 must be(1)
}
}

0 comments on commit 330081d

Please sign in to comment.