Browse Source

Move comment

gingerBill 4 years ago
parent
commit
364e6c9573
2 changed files with 1 additions and 1 deletions
  1. 0 1
      core/testing/runner.odin
  2. 1 0
      core/testing/runner_other.odin

+ 0 - 1
core/testing/runner.odin

@@ -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) {

+ 1 - 0
core/testing/runner_other.odin

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