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 e9dc43b commit fc4b3fcCopy full SHA for fc4b3fc
logger_test.go
@@ -54,7 +54,7 @@ func TestWithArgs(t *testing.T) {
54
55
t.Run("Non Empty Named Args", func(t *testing.T) {
56
k, v := l.withArgs(namedValuesToValues([]driver.NamedValue{
57
- {"test", 1, 9},
+ {Name: "test", Ordinal: 1, Value: 9},
58
}))()
59
assert.Equal(t, cfg.sqlArgsFieldname, k)
60
assert.Equal(t, []interface{}{9}, v)
0 commit comments