IDEA-169556 Join Lines inserts redundant space in some cases - fix test data for affected tests

This commit is contained in:
Dmitry Batrak
2017-03-17 13:15:20 +03:00
parent b346fc5e2e
commit 508a48a50d
2 changed files with 5 additions and 5 deletions
@@ -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 { <caret>}")
performPaste()
myFixture.checkResult """import p.Foo; class Bar {p1.Foo}"""
myFixture.checkResult """import p.Foo; class Bar { p1.Foo}"""
}
void testAddImport() {