Skip to content

Commit 184c470

Browse files
committed
don't run test with ppxlib.0.36
1 parent cbc9044 commit 184c470

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

dune-project

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@
7979
(ocaml (>= 4.08))
8080
(js_of_ocaml (= :version))
8181
(ppxlib (>= 0.15))
82+
(ppxlib (and (< 0.36) :with-test))
8283
(num :with-test)
8384
(ppx_expect (and (>= v0.14.2) :with-test))
8485
(re (and (>= 1.9.0) :with-test))

js_of_ocaml-ppx.opam

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ depends: [
1616
"ocaml" {>= "4.08"}
1717
"js_of_ocaml" {= version}
1818
"ppxlib" {>= "0.15"}
19+
"ppxlib" {< "0.36" & with-test}
1920
"num" {with-test}
2021
"ppx_expect" {>= "v0.14.2" & with-test}
2122
"re" {>= "1.9.0" & with-test}

ppx/ppx_js/tests/gen.mlt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -409,8 +409,8 @@ let o () =
409409
("m3",
410410
(Js_of_ocaml.Js.Unsafe.inject
411411
(Js_of_ocaml.Js.wrap_meth_callback t31)))|])
412-
(fun _ : 'a -> unit-> fun (type a) (a : a) -> ignore a)
413-
(fun _ : int -> unit-> fun (type a) (a : a) -> ignore a)
412+
(fun _ : 'a -> unit-> fun (type a) -> fun (a : a) -> ignore a)
413+
(fun _ : int -> unit-> fun (type a) -> fun (a : a) -> ignore a)
414414
(fun _ : 'b -> unit-> fun (a : 'b) -> ignore a)
415415
((fun self m1 m2 m3 ->
416416
object method m1 = m1 self method m2 = m2 self method m3 = m3 self

0 commit comments

Comments
 (0)