From be74c29bc91273ce585139b2b1f7305512ae941b Mon Sep 17 00:00:00 2001 From: Rusty Russell Date: Sun, 7 Dec 2008 20:02:05 +1030 Subject: [PATCH] Fix up line numbers after commit 109 --- ccan/tap/test/run.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ccan/tap/test/run.c b/ccan/tap/test/run.c index 26957fb5..5af7c2e9 100644 --- a/ccan/tap/test/run.c +++ b/ccan/tap/test/run.c @@ -90,21 +90,21 @@ int main(int argc, char *argv[]) ok(0, "msg2"); expect(p[0], "not ok 2 - msg2\n" - "# Failed test (*tap/test/run.c:main() at line 77)\n"); + "# Failed test (*tap/test/run.c:main() at line 91)\n"); ok1(true); expect(p[0], "ok 3 - true\n"); ok1(false); expect(p[0], "not ok 4 - false\n" - "# Failed test (*tap/test/run.c:main() at line 84)\n"); + "# Failed test (*tap/test/run.c:main() at line 98)\n"); pass("passed"); expect(p[0], "ok 5 - passed\n"); fail("failed"); expect(p[0], "not ok 6 - failed\n" - "# Failed test (*tap/test/run.c:main() at line 91)\n"); + "# Failed test (*tap/test/run.c:main() at line 105)\n"); skip(2, "skipping %s", "test"); expect(p[0], "ok 7 # skip skipping test\n" @@ -113,7 +113,7 @@ int main(int argc, char *argv[]) todo_start("todo"); ok1(false); expect(p[0], "not ok 9 - false # TODO todo\n" - "# Failed (TODO) test (*tap/test/run.c:main() at line 100)\n"); + "# Failed (TODO) test (*tap/test/run.c:main() at line 114)\n"); ok1(true); expect(p[0], "ok 10 - true # TODO todo\n"); todo_end(); -- 2.39.2