diff --git a/compiler/tests/org/jetbrains/jet/JetLiteFixture.java b/compiler/tests/org/jetbrains/jet/JetLiteFixture.java index 5c65a5f4c83..ad854b1b45d 100644 --- a/compiler/tests/org/jetbrains/jet/JetLiteFixture.java +++ b/compiler/tests/org/jetbrains/jet/JetLiteFixture.java @@ -66,21 +66,21 @@ public abstract class JetLiteFixture extends UsefulTestCase { protected void createEnvironmentWithMockJdkAndIdeaAnnotations() { if (myEnvironment != null) { - throw new IllegalStateException("must not set up myEnvironemnt twice"); + throw new IllegalStateException("must not set up myEnvironment twice"); } myEnvironment = JetTestUtils.createEnvironmentWithMockJdkAndIdeaAnnotations(getTestRootDisposable()); } protected void createEnvironmentWithMockJdkAndIdeaAnnotations(@NotNull CompilerSpecialMode compilerSpecialMode) { if (myEnvironment != null) { - throw new IllegalStateException("must not set up myEnvironemnt twice"); + throw new IllegalStateException("must not set up myEnvironment twice"); } myEnvironment = JetTestUtils.createEnvironmentWithMockJdkAndIdeaAnnotations(getTestRootDisposable(), compilerSpecialMode); } protected void createEnvironmentWithFullJdk() { if (myEnvironment != null) { - throw new IllegalStateException("must not set up myEnvironemnt twice"); + throw new IllegalStateException("must not set up myEnvironment twice"); } myEnvironment = JetTestUtils.createEnvironmentWithFullJdk(getTestRootDisposable()); }