diff --git a/java/java-tests/testSrc/com/intellij/codeInsight/CopyReferenceActionTest.groovy b/java/java-tests/testSrc/com/intellij/codeInsight/CopyReferenceActionTest.groovy index 1270cb79fad3..d74228437465 100644 --- a/java/java-tests/testSrc/com/intellij/codeInsight/CopyReferenceActionTest.groovy +++ b/java/java-tests/testSrc/com/intellij/codeInsight/CopyReferenceActionTest.groovy @@ -1,5 +1,5 @@ /* - * Copyright 2000-2016 JetBrains s.r.o. + * Copyright 2000-2017 JetBrains s.r.o. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -63,7 +63,7 @@ class CopyReferenceActionTest extends LightCodeInsightFixtureTestCase { performCopy() myFixture.configureByText("a.java", "import p.Foo; class Bar { }") performPaste() - myFixture.checkResult """import p.Foo; class Bar {p1.Foo}""" + myFixture.checkResult """import p.Foo; class Bar { p1.Foo}""" } void testAddImport() { diff --git a/platform/lang-impl/testSources/com/intellij/codeInsight/editorActions/IndentingBackspaceHandlerUncommittedDocumentTest.java b/platform/lang-impl/testSources/com/intellij/codeInsight/editorActions/IndentingBackspaceHandlerUncommittedDocumentTest.java index f51179dfa5d8..6a0e7f7ac127 100644 --- a/platform/lang-impl/testSources/com/intellij/codeInsight/editorActions/IndentingBackspaceHandlerUncommittedDocumentTest.java +++ b/platform/lang-impl/testSources/com/intellij/codeInsight/editorActions/IndentingBackspaceHandlerUncommittedDocumentTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2000-2014 JetBrains s.r.o. + * Copyright 2000-2017 JetBrains s.r.o. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -45,8 +45,8 @@ public class IndentingBackspaceHandlerUncommittedDocumentTest extends LightPlatf backspace(); backspace(); checkResultByText("class Foo {\n" + - " void m1() {}\n" + - " void m2() {}\n" + + " void m1() { }\n" + + " void m2() { }\n" + "}"); } } \ No newline at end of file