From e04d3efb142ba371c05c0bbf5e8e34298bea22f5 Mon Sep 17 00:00:00 2001 From: Andrey Vlasovskikh Date: Wed, 20 Aug 2014 17:25:56 +0400 Subject: [PATCH] Missing newlines --- python/testSrc/com/jetbrains/python/PyTypingTest.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/python/testSrc/com/jetbrains/python/PyTypingTest.java b/python/testSrc/com/jetbrains/python/PyTypingTest.java index afe0d094a527..d2841569041b 100644 --- a/python/testSrc/com/jetbrains/python/PyTypingTest.java +++ b/python/testSrc/com/jetbrains/python/PyTypingTest.java @@ -141,7 +141,7 @@ public class PyTypingTest extends PyTestCase { public void testGenericType() { doTest("A", - "from typing import typevar" + + "from typing import typevar\n" + "\n" + "T = typevar('A')\n" + "\n" + @@ -151,13 +151,12 @@ public class PyTypingTest extends PyTestCase { public void testGenericBoundedType() { doTest("T <= int | str", - "from typing import typevar" + + "from typing import typevar\n" + "\n" + "T = typevar('T', values=(int, str))\n" + "\n" + "def f(expr: T):\n" + " pass\n"); - } private void doTest(@NotNull String expectedType, @NotNull String text) {