mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
Test for PY-9573
This commit is contained in:
@@ -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();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user