diff options
| author | VladPavliuk <pavliuk.vlad@gmail.com> | 2024-07-14 00:21:05 +0300 |
|---|---|---|
| committer | VladPavliuk <pavliuk.vlad@gmail.com> | 2024-07-14 00:21:05 +0300 |
| commit | 76fe5d1346e623b535d5168ec36e1254ef769c68 (patch) | |
| tree | 091ef95c907eb87046356fbc037ce151da2dda41 /tests/core/encoding | |
| parent | 64ae99f016998fe78a5a0304767463c46050567a (diff) | |
Align ignore syntax of json tags with fmt, cbor
Diffstat (limited to 'tests/core/encoding')
| -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 9fde5a443..a50dd7fe0 100644 --- a/tests/core/encoding/json/test_core_json.odin +++ b/tests/core/encoding/json/test_core_json.odin @@ -373,7 +373,7 @@ utf8_string_of_multibyte_characters :: proc(t: ^testing.T) { @test struct_with_ignore_tags :: proc(t: ^testing.T) { My_Struct :: struct { - a: string `json:"_,ignore"`, + a: string `json:"-"`, } my_struct := My_Struct{ |