diff --git a/test/basic.t/run.t b/test/basic.t/run.t index e9e1db7c1..db3cab779 100644 --- a/test/basic.t/run.t +++ b/test/basic.t/run.t @@ -1,5 +1,5 @@ See the typed tree from ./input.re - $ cat ./input.re | outcome_printer + $ cat ./input.re | ../lib/outcometreePrinter.exe let x1: unit => int; let x2: 'a => int; let x3: (int, 'a) => int; diff --git a/test/class.t/run.t b/test/class.t/run.t index ae8cb8aa7..d5db500dd 100644 --- a/test/class.t/run.t +++ b/test/class.t/run.t @@ -1,5 +1,5 @@ See the typed tree from ./input.re - $ cat ./input.re | outcome_printer + $ cat ./input.re | ../lib/outcometreePrinter.exe class aClass1 : ('a) => { diff --git a/test/dune b/test/dune index e42072950..b025d5a98 100644 --- a/test/dune +++ b/test/dune @@ -6,7 +6,7 @@ (cram (applies_to * \ lib rtopIntegration) (package reason) - (deps %{bin:ocamlc} %{bin:refmt} %{bin:outcome_printer})) + (deps %{bin:ocamlc} %{bin:refmt} ./lib/outcometreePrinter.exe)) (cram (applies_to rtopIntegration) diff --git a/test/inlineRecord.t/run.t b/test/inlineRecord.t/run.t index 733eef079..22d80f2b0 100644 --- a/test/inlineRecord.t/run.t +++ b/test/inlineRecord.t/run.t @@ -1,5 +1,5 @@ See the typed tree from ./input.re - $ cat ./input.re | outcome_printer + $ cat ./input.re | ../lib/outcometreePrinter.exe type t0 = T0({ t0: int, }); type t1 = A({ x: int, }) | B | C({ c1: string, c2: string, }); type t2(_) = diff --git a/test/lib/dune b/test/lib/dune index eadff1d00..4d9bdf55d 100644 --- a/test/lib/dune +++ b/test/lib/dune @@ -5,7 +5,5 @@ (run %{bin:cppo} -V OCAML:%{ocaml_version} %{deps} -o %{targets}))) (executable - (public_name outcome_printer) (name outcometreePrinter) - (package reason) (libraries reason))