diff options
| author | gingerBill <gingerBill@users.noreply.github.com> | 2025-08-08 12:36:56 +0100 |
|---|---|---|
| committer | gingerBill <gingerBill@users.noreply.github.com> | 2025-08-08 12:36:56 +0100 |
| commit | 414b1059a80b6fd96e839d761c71338a60b697ec (patch) | |
| tree | 785e573d34395ee1b3e6f7b4cbc9fb1e1907dd62 | |
| parent | d381d0ece4b9cd5fcf454fbd7ca79969d2b76cb8 (diff) | |
Fix typo
| -rw-r--r-- | tests/core/normal.odin | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/core/normal.odin b/tests/core/normal.odin index a64f38209..fe69acf64 100644 --- a/tests/core/normal.odin +++ b/tests/core/normal.odin @@ -2,8 +2,8 @@ package tests_core import rlibc "core:c/libc" -@(init="contextless") -download_assets :: proc() { +@(init) +download_assets :: proc "contextless" () { if rlibc.system("python3 " + ODIN_ROOT + "tests/core/download_assets.py " + ODIN_ROOT + "tests/core/assets") != 0 { panic_contextless("downloading test assets failed!") } |