Timer overhaul: update tests

This commit is contained in:
John McCardle 2026-01-03 22:44:53 -05:00
commit cec76b63dc
78 changed files with 521 additions and 495 deletions

View file

@ -11,7 +11,7 @@ Tests:
import mcrfpy
import sys
def run_test(runtime):
def run_test(timer, runtime):
print("=" * 60)
print("Issue #147 Regression Test: Dynamic Layer System for Grid")
print("=" * 60)
@ -190,4 +190,4 @@ def run_test(runtime):
# Initialize and run
init = mcrfpy.Scene("init")
init.activate()
mcrfpy.setTimer("test", run_test, 100)
test_timer = mcrfpy.Timer("test", run_test, 100, once=True)