File tree Expand file tree Collapse file tree 1 file changed +6
-9
lines changed
Expand file tree Collapse file tree 1 file changed +6
-9
lines changed Original file line number Diff line number Diff line change @@ -780,23 +780,20 @@ def test_IfExp_error(self):
780780 self .assertRaises (
781781 ValueError ,
782782 jast .IfExp ,
783- test = jast .Constant (
784- jast .BoolLiteral (True ), body = jast .Constant (jast .IntLiteral (42 ))
785- ),
783+ test = jast .Constant (jast .BoolLiteral (True )),
784+ body = jast .Constant (jast .IntLiteral (42 )),
786785 )
787786 self .assertRaises (
788787 ValueError ,
789788 jast .IfExp ,
790- test = jast .Constant (
791- jast .BoolLiteral (True ), orelse = jast .Constant (jast .IntLiteral (0 ))
792- ),
789+ test = jast .Constant (jast .BoolLiteral (True )),
790+ orelse = jast .Constant (jast .IntLiteral (0 )),
793791 )
794792 self .assertRaises (
795793 ValueError ,
796794 jast .IfExp ,
797- body = jast .Constant (
798- jast .IntLiteral (42 ), orelse = jast .Constant (jast .IntLiteral (0 ))
799- ),
795+ body = jast .Constant (jast .IntLiteral (42 )),
796+ orelse = jast .Constant (jast .IntLiteral (0 )),
800797 )
801798
802799 def test_BinOp (self ):
You can’t perform that action at this time.
0 commit comments