From 330081d031c4a81b6309d58a243c2ba638bbd175 Mon Sep 17 00:00:00 2001 From: Kevin Boyette Date: Fri, 22 Mar 2024 10:38:02 -0400 Subject: [PATCH] fix typo in example tests (Exmaple => Example) (#1553) --- .../example/ScalaTestExampleTest.scala | 2 +- .../testing/scalatest_repositories/example/ExampleTest.scala | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/testing/multi_frameworks_toolchain/example/ScalaTestExampleTest.scala b/examples/testing/multi_frameworks_toolchain/example/ScalaTestExampleTest.scala index 8e0df079d..05f7f29c4 100644 --- a/examples/testing/multi_frameworks_toolchain/example/ScalaTestExampleTest.scala +++ b/examples/testing/multi_frameworks_toolchain/example/ScalaTestExampleTest.scala @@ -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) } } diff --git a/examples/testing/scalatest_repositories/example/ExampleTest.scala b/examples/testing/scalatest_repositories/example/ExampleTest.scala index 1f488d655..f4d2811a5 100644 --- a/examples/testing/scalatest_repositories/example/ExampleTest.scala +++ b/examples/testing/scalatest_repositories/example/ExampleTest.scala @@ -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) } }