From 103645273623daaeaef705c450b38adcdcc6f936 Mon Sep 17 00:00:00 2001 From: hyung-hwan Date: Tue, 5 Aug 2025 12:33:00 +0900 Subject: [PATCH] fixed indentation in tap.inc --- t/tap.inc | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/t/tap.inc b/t/tap.inc index cb524805..47cfd845 100644 --- a/t/tap.inc +++ b/t/tap.inc @@ -26,10 +26,9 @@ function tap_skip (msg) function tap_ensure (a, b, desc, line) { - @local id; - + @local id; id = sprintf("%s[%d]", desc, line); - if (a != b) tap_fail (id); + if (a != b) tap_fail (id); else tap_ok (id); }