diff options
Diffstat (limited to 'unittest/examples/skip_all-t.c')
-rw-r--r-- | unittest/examples/skip_all-t.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/unittest/examples/skip_all-t.c b/unittest/examples/skip_all-t.c index 11c1ef13276..3751642293b 100644 --- a/unittest/examples/skip_all-t.c +++ b/unittest/examples/skip_all-t.c @@ -31,9 +31,9 @@ int main() { if (!has_feature()) skip_all("Example of skipping an entire test"); plan(4); - ok(1, NULL); - ok(1, NULL); - ok(1, NULL); - ok(1, NULL); + ok1(1); + ok1(1); + ok1(1); + ok1(1); return exit_status(); } |