PythonHighlightingTest fixed

This commit is contained in:
Dmitry Jemerov
2009-12-25 18:37:13 +03:00
parent 733d9a3736
commit ef05a7b80b
3 changed files with 3 additions and 3 deletions

View File

@@ -14,4 +14,4 @@ class <info descr="null" type="INFORMATION" foreground="0x0000ff" background="0x
pass
def <info descr="null" type="INFORMATION" foreground="0xff0000" background="0x000000" effectcolor="0xffffff" effecttype="BOXED" fonttype="1">__made_up__</info>(self):
return None
return <info type="INFORMATION">None</info>

View File

@@ -2,4 +2,4 @@
def <info descr="null" type="INFORMATION" foreground="0xff0000" background="0x000000" effectcolor="0xffffff" effecttype="BOXED" fonttype="1">foo</info>():
def <info descr="null" type="INFORMATION" foreground="0xff0000" background="0x000000" effectcolor="0xffffff" effecttype="BOXED" fonttype="1">a</info>():
yield 1
return False
return <info type="INFORMATION">False</info>

View File

@@ -63,7 +63,7 @@ public class PythonHighlightingTest extends PyLightFixtureTestCase {
}
public void testContinueInFinallyBlock() throws Exception {
doTest();
doTest(false, false);
}
public void testReturnWithArgumentsInGenerator() throws Exception {