Test for PY-9573

This commit is contained in:
Dmitry Trofimov
2014-01-17 20:25:24 +01:00
parent 2d6afbec6e
commit ab7b959d8e
3 changed files with 12 additions and 0 deletions
@@ -0,0 +1,4 @@
def is_false(value):
if value is None \
or value == 0:
return False
@@ -0,0 +1,4 @@
def is_false(value):
if value is None \
or value == 0:
return False
@@ -203,6 +203,10 @@ public class PyFormatterTest extends PyTestCase {
doTest();
}
public void testContinuationIndentAfterIf() { // PY-9573
doTest();
}
public void testBlankLineAfterDecorator() {
doTest();
}