From 899cd85d065c4e88208241c55316349c8fcef114 Mon Sep 17 00:00:00 2001 From: Josh Soref Date: Fri, 20 Jan 2017 08:13:55 +0000 Subject: [PATCH] spelling: exception --- sbt/src/sbt-test/tests/t543/src/test/scala/Test.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sbt/src/sbt-test/tests/t543/src/test/scala/Test.scala b/sbt/src/sbt-test/tests/t543/src/test/scala/Test.scala index 84ea70f61..7cc7c481c 100644 --- a/sbt/src/sbt-test/tests/t543/src/test/scala/Test.scala +++ b/sbt/src/sbt-test/tests/t543/src/test/scala/Test.scala @@ -2,7 +2,7 @@ import org.scalatest.FunSuite class SBT543 extends FunSuite { class MyCustomException(message: String) extends RuntimeException(message) - test("throws a custom excpetion") { + test("throws a custom exception") { throw new MyCustomException("this is a custom exception") } }