We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27ea569 commit 23d0a38Copy full SHA for 23d0a38
type_bench_test.go
@@ -149,8 +149,10 @@ func BenchmarkCustomerType_MarshalJSON(b *testing.B) {
149
150
c := Parse("2020-08-05 13:14:15.999999999")
151
152
- model.Customer1 = *NewFormatType[iso8601Type](c)
153
- model.Customer2 = *NewLayoutType[rfc3339Type](c)
+ model.Customer1 = *NewLayoutType[rfc3339Type](c)
+ model.Customer2 = *NewLayoutType[w3cType](c)
154
+ model.Customer3 = *NewFormatType[iso8601Type](c)
155
+ model.Customer4 = *NewFormatType[rssType](c)
156
157
model.CreatedAt = NewFormatType[iso8601Type](c)
158
model.UpdatedAt = NewLayoutType[rfc3339Type](c)
0 commit comments