add semicolons in example test

This commit is contained in:
jacekpoz 2024-04-30 12:09:55 +02:00
parent d970e74ce3
commit c9c7a4f408
Signed by: poz
SSH key fingerprint: SHA256:JyLeVWE4bF3tDnFeUpUaJsPsNlJyBldDGV/dIKSLyN8

View file

@ -2,7 +2,7 @@
TEST_START()
TEST("tests work",
assert(1 == 1, "c++ broke")
assert(1 != 0, "c++ broke #2")
assert(1 == 1, "c++ broke");
assert(1 != 0, "c++ broke #2");
)
TEST_FINISH()