From 92f0b7daaaea754d49e17304c63c3c3fb5dc84a1 Mon Sep 17 00:00:00 2001 From: Jeremie Dimino Date: Wed, 31 May 2017 10:20:33 +0100 Subject: [PATCH] Fix test --- test/expect-tests/action.mlt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/test/expect-tests/action.mlt b/test/expect-tests/action.mlt index 73bcb0f9..2e536ca7 100644 --- a/test/expect-tests/action.mlt +++ b/test/expect-tests/action.mlt @@ -29,10 +29,13 @@ infer (Progn - : string list * string list = (["a"], ["b"; "c"]) |}] +(* CR-someday jdimino: ideally "b" should be treated as a non-buildable targets. As long + as [rename] is not available in the DSL given to user, we don't need to care about this + too much. *) infer (Progn [ Copy (p "a", p "b") ; Rename (p "b", p "c") ]);; [%%expect{| -- : string list * string list = (["a"], ["c"]) +- : string list * string list = (["a"], ["b"; "c"]) |}]