From d5fadbd7d93fe047a37591a149bae007c359b88c Mon Sep 17 00:00:00 2001
From: Arun Isaac
Date: Fri, 1 Dec 2023 22:36:37 +0000
Subject: tests: Put expected expression before actual expression.

* tests/ccwl.scm ("rename should work even on the final output of a
workflow"): Put expected expression before actual expression.
---
 tests/ccwl.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tests/ccwl.scm b/tests/ccwl.scm
index d3e1a96..9e73c50 100644
--- a/tests/ccwl.scm
+++ b/tests/ccwl.scm
@@ -133,14 +133,14 @@
            #:outputs (printed-message #:type stdout)))
 
 (test-equal "rename should work even on the final output of a workflow"
+  (list 'out1 'printed-message)
   (map output-id
        (workflow-outputs
         (workflow ((message1 #:type string)
                    (message2 #:type string))
           (tee (pipe (print (print1) #:message message1)
                      (rename #:out1 printed-message))
-               (print (print2) #:message message2)))))
-  (list 'out1 'printed-message))
+               (print (print2) #:message message2))))))
 
 ;; TODO: Define this in the lexical scope of the test that requires
 ;; it.
-- 
cgit 1.4.1