diff --git a/types/nullable_test.go b/types/nullable_test.go index c6b246f..79ef2c2 100644 --- a/types/nullable_test.go +++ b/types/nullable_test.go @@ -8,7 +8,6 @@ import ( ) type SimpleString struct { - // cannot decide if it was provided with `null` value in json Name Nullable[string] `json:"name"` } @@ -61,7 +60,6 @@ func TestSimpleString(t *testing.T) { } type SimpleInt struct { - // cannot decide if it was provided with `null` value in json ReplicaCount Nullable[int] `json:"replicaCount"` }