@@ -65,14 +65,14 @@ func TestConvert_FormatType(t *testing.T) {
6565 {name : "utf8" , typ : & schema.StringType {T : TypeUtf8 }, expected : TypeUtf8 },
6666
6767 // JSON types
68- {name : "json" , typ : & schema.JSONType {T : TypeJson }, expected : TypeJson },
69- {name : "jsondocument" , typ : & schema.JSONType {T : TypeJsonDocument }, expected : TypeJsonDocument },
68+ {name : "json" , typ : & schema.JSONType {T : TypeJSON }, expected : TypeJSON },
69+ {name : "jsondocument" , typ : & schema.JSONType {T : TypeJSONDocument }, expected : TypeJSONDocument },
7070
7171 // YSON type
7272 {name : "yson" , typ : YsonType {T : TypeYson }, expected : TypeYson },
7373
7474 // UUID type
75- {name : "uuid" , typ : & schema.UUIDType {T : TypeUuid }, expected : TypeUuid },
75+ {name : "uuid" , typ : & schema.UUIDType {T : TypeUUID }, expected : TypeUUID },
7676
7777 // Date/Time types
7878 {name : "date" , typ : & schema.TimeType {T : TypeDate }, expected : TypeDate },
@@ -160,14 +160,14 @@ func TestConvert_ParseType(t *testing.T) {
160160 {name : "utf8" , input : TypeUtf8 , expected : & schema.StringType {T : TypeUtf8 }},
161161
162162 // JSON types
163- {name : "json" , input : TypeJson , expected : & schema.JSONType {T : TypeJson }},
164- {name : "jsonDocument" , input : TypeJsonDocument , expected : & schema.JSONType {T : TypeJsonDocument }},
163+ {name : "json" , input : TypeJSON , expected : & schema.JSONType {T : TypeJSON }},
164+ {name : "jsonDocument" , input : TypeJSONDocument , expected : & schema.JSONType {T : TypeJSONDocument }},
165165
166166 // YSON type
167167 {name : "yson" , input : TypeYson , expected : & YsonType {T : TypeYson }},
168168
169169 // UUID type
170- {name : "uuid" , input : TypeUuid , expected : & schema.UUIDType {T : TypeUuid }},
170+ {name : "uuid" , input : TypeUUID , expected : & schema.UUIDType {T : TypeUUID }},
171171
172172 // Date/Time types
173173 {name : "date" , input : TypeDate , expected : & schema.TimeType {T : TypeDate }},
0 commit comments