gingerBill 3 years ago
parent
commit
7203560b06
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tests/core/encoding/json/test_core_json.odin

+ 1 - 1
tests/core/encoding/json/test_core_json.odin

@@ -88,5 +88,5 @@ marshal_json :: proc(t: ^testing.T) {
    
    
 	_, err := json.marshal(my_struct)
 	_, 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")
 }
 }