diff options
| author | gingerBill <bill@gingerbill.org> | 2022-03-24 12:15:03 +0000 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2022-03-24 12:15:03 +0000 |
| commit | 7203560b06c1e70dcc91d39a5ee562038ac76281 (patch) | |
| tree | a62cb1033126edee104562b769f94ccebfed936c /tests | |
| parent | 1baeb9406f5deb309a87e10b848567fc1b30a695 (diff) | |
Fix test
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/core/encoding/json/test_core_json.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/core/encoding/json/test_core_json.odin b/tests/core/encoding/json/test_core_json.odin index 60e71bf72..285cc04a1 100644 --- a/tests/core/encoding/json/test_core_json.odin +++ b/tests/core/encoding/json/test_core_json.odin @@ -88,5 +88,5 @@ marshal_json :: proc(t: ^testing.T) { _, err := json.marshal(my_struct) - expect(t, err == .None, "expected json error to be none") + expect(t, err == nil, "expected json error to be none") } |