aboutsummaryrefslogtreecommitdiff
path: root/core/testing/runner.odin
diff options
context:
space:
mode:
authorJeroen van Rijn <Kelimion@users.noreply.github.com>2026-02-08 12:48:41 +0100
committerJeroen van Rijn <Kelimion@users.noreply.github.com>2026-02-08 12:48:41 +0100
commit8f4bcf4d31fe83f2fe9a93a0b0a8e28d11c0c882 (patch)
tree371e91d2ef0620ca059c39d14f1b7172b14839b7 /core/testing/runner.odin
parentc2647673ec503938a302bd083f42602a5a000177 (diff)
More conflicts during rebase
Diffstat (limited to 'core/testing/runner.odin')
-rw-r--r--core/testing/runner.odin4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/testing/runner.odin b/core/testing/runner.odin
index a184578a6..8873bc973 100644
--- a/core/testing/runner.odin
+++ b/core/testing/runner.odin
@@ -219,8 +219,8 @@ runner :: proc(internal_tests: []Internal_Test) -> bool {
}
}
- stdout := os.stdout.stream
- stderr := os.stderr.stream
+ stdout := os.to_stream(os.stdout)
+ stderr := os.to_stream(os.stderr)
// The animations are only ever shown through STDOUT;
// STDERR is used exclusively for logging regardless of error level.