diff options
| author | gingerBill <bill@gingerbill.org> | 2021-09-29 13:24:42 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2021-09-29 13:24:42 +0100 |
| commit | b2164b5da604e62aa24eeb9c77fc72128afe7f89 (patch) | |
| tree | ada5161e3eb3cb792c176b8e33710836e8c1ca1c /core/testing | |
| parent | 057310472e453a4cda7c93daa15115ca99ee9b90 (diff) | |
Make the io/conv.odin utilities be `#optional_ok`
Diffstat (limited to 'core/testing')
| -rw-r--r-- | core/testing/runner.odin | 2 |
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 |