about summary refs log tree commit diff stats
path: root/052tangle.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-11-15 21:55:56 -0800
committerKartik K. Agaram <vc@akkartik.com>2016-11-15 22:22:11 -0800
commit4cec4143d3f35be3f4379e00cc4fea357ef2a349 (patch)
treec067f33b8193344993dd45d495be4e22951a1bc0 /052tangle.cc
parent293732951a2052dd079c253942922eab6c1a734d (diff)
downloadmu-4cec4143d3f35be3f4379e00cc4fea357ef2a349.tar.gz
3675
Diffstat (limited to '052tangle.cc')
-rw-r--r--052tangle.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/052tangle.cc b/052tangle.cc
index f53e8736..2136a60d 100644
--- a/052tangle.cc
+++ b/052tangle.cc
@@ -452,13 +452,13 @@ void test_new_fragment_after_tangle() {
        "  1:num/raw <- copy 34\n"
        "]\n");
   transform_all();
-  CHECK_TRACE_DOESNT_CONTAIN_ERROR();
+  CHECK_TRACE_DOESNT_CONTAIN_ERRORS();
   Hide_errors = true;
   // try to tangle into recipe foo after transform
   load("before <label> [\n"
        "  2:num/raw <- copy 35\n"
        "]\n");
-  CHECK_TRACE_CONTAINS_ERROR();
+  CHECK_TRACE_CONTAINS_ERRORS();
 }
 
 :(before "End before Command Handler")