File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -776,15 +776,15 @@ let of_action env act =
776
776
777
777
let of_assertion' env act loc name args wrapper_opt =
778
778
let act_js, act_wrapper_opt = of_action env act in
779
- let js = name ^ " (() => " ^ act_js ^ loc ^ String. concat " , " (" " :: args) ^ " )" in
779
+ let js = name ^ " (() => " ^ act_js ^ " , " ^ loc ^ String. concat " , " (" " :: args) ^ " )" in
780
780
match act_wrapper_opt with
781
781
| None -> js ^ " ;"
782
782
| Some (act_wrapper , out ) ->
783
783
let run_name, wrapper =
784
784
match wrapper_opt with
785
785
| None -> name, run
786
786
| Some wrapper -> " run" , wrapper
787
- in run_name ^ " (() => " ^ act_wrapper (wrapper out) act.at ^ loc ^ " ); // " ^ js
787
+ in run_name ^ " (() => " ^ act_wrapper (wrapper out) act.at ^ " , " ^ loc ^ " ); // " ^ js
788
788
789
789
let of_assertion env ass =
790
790
let loc = of_loc ass.at in
You can’t perform that action at this time.
0 commit comments