Move comment

This commit is contained in:
gingerBill
2021-05-01 22:58:13 +01:00
parent 52d38ae42b
commit 364e6c9573
2 changed files with 1 additions and 1 deletions

View File

@@ -54,7 +54,6 @@ runner :: proc(internal_tests: []Internal_Test) -> bool {
logf(t, "[Test: %s]", it.name);
// TODO(bill): Catch panics
run_internal_test(t, it);
if failed(t) {

View File

@@ -3,5 +3,6 @@
package testing
run_internal_test :: proc(t: ^T, it: Internal_Test) {
// TODO(bill): Catch panics on other platforms
it.p(t);
}