Update faked_test.go

Removed unnecessary code
This commit is contained in:
Elias506 2020-11-15 14:51:05 +03:00 committed by GitHub
parent 92c732e901
commit 2fead200db
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -906,7 +906,7 @@ func (s *fakeStmt) QueryContext(ctx context.Context, args []driver.NamedValue) (
parentMem: s.c, parentMem: s.c,
posRow: -1, posRow: -1,
rows: [][]*row{ rows: [][]*row{
[]*row{ {
{ {
cols: []interface{}{ cols: []interface{}{
txStatus, txStatus,
@ -915,12 +915,12 @@ func (s *fakeStmt) QueryContext(ctx context.Context, args []driver.NamedValue) (
}, },
}, },
cols: [][]string{ cols: [][]string{
[]string{ {
"tx_status", "tx_status",
}, },
}, },
colType: [][]string{ colType: [][]string{
[]string{ {
"string", "string",
}, },
}, },