[jstests] Ordering imports in __init__

This commit is contained in:
sulyi 2016-12-29 01:04:08 +01:00
parent 3d0252aee0
commit a5e70225d0

View File

@ -1,38 +1,38 @@
from . import ( from . import (
basic,
calc,
empty_return,
morespace,
strange_chars,
operators,
unary,
array_access, array_access,
parens,
assignments, assignments,
comments, basic,
precedence,
call,
getfield,
branch, branch,
switch, calc,
for_loop, call,
comments,
debug,
do_loop,
empty_return,
for_empty, for_empty,
for_in, for_in,
do_loop, for_loop,
while_loop,
label,
func_expr, func_expr,
getfield,
label,
morespace,
object_literal, object_literal,
operators,
parens,
precedence,
strange_chars,
switch,
try_statement, try_statement,
with_statement, unary,
debug, unshift,
unshift while_loop,
with_statement
) )
modules = [basic, calc, empty_return, morespace, strange_chars, operators, unary, array_access, parens, assignments, modules = [array_access, assignments, basic, branch, calc, call, comments, debug, do_loop, empty_return, for_empty,
comments, precedence, call, getfield, branch, switch, for_loop, for_empty, for_in, do_loop, while_loop, for_in, for_loop, func_expr, getfield, label, morespace, object_literal, operators, parens, precedence,
label, func_expr, object_literal, try_statement, with_statement, debug, unshift] strange_chars, switch, try_statement, unary, unshift, while_loop, with_statement]
def gettestcases(): def gettestcases():