aboutsummaryrefslogtreecommitdiff
path: root/core/testing
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2021-09-29 13:24:42 +0100
committergingerBill <bill@gingerbill.org>2021-09-29 13:24:42 +0100
commitb2164b5da604e62aa24eeb9c77fc72128afe7f89 (patch)
treeada5161e3eb3cb792c176b8e33710836e8c1ca1c /core/testing
parent057310472e453a4cda7c93daa15115ca99ee9b90 (diff)
Make the io/conv.odin utilities be `#optional_ok`
Diffstat (limited to 'core/testing')
-rw-r--r--core/testing/runner.odin2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/testing/runner.odin b/core/testing/runner.odin
index 359039243..0039f1939 100644
--- a/core/testing/runner.odin
+++ b/core/testing/runner.odin
@@ -18,7 +18,7 @@ end_t :: proc(t: ^T) {
runner :: proc(internal_tests: []Internal_Test) -> bool {
stream := os.stream_from_handle(os.stdout)
- w, _ := io.to_writer(stream)
+ w := io.to_writer(stream)
t := &T{}
t.w = w