fixed indentation in tap.inc
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2025-08-05 12:33:00 +09:00
parent dc44276e69
commit 1036452736

View File

@ -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);
}