Skip to content

Commit

Permalink
delete unuse comment.
Browse files Browse the repository at this point in the history
  • Loading branch information
future-taga committed Jun 3, 2022
1 parent a7e0478 commit 325178d
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions eval_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,6 @@ func TestEval(t *testing.T) {
GenderList: []string{"M", "F"},
IntList: []int{1, 2, 3},
},
// wantQuery: `SELECT * FROM person WHERE employee_no < 1000 AND id = 3`,
wantQuery: `
SELECT
*
Expand Down Expand Up @@ -480,7 +479,6 @@ func TestEval(t *testing.T) {
EmpNo: 1000,
MaxEmpNo: 10,
},
// wantQuery: `SELECT * FROM person WHERE 1=1 AND id = ?/*maxEmpNo*/`,
wantQuery: `
SELECT
*
Expand Down Expand Up @@ -524,7 +522,6 @@ func TestEval(t *testing.T) {
EmpNo: 1000,
MaxEmpNo: 10,
},
// wantQuery: `SELECT * FROM person WHERE 1=1 AND employee_no < ?/*EmpNo*/ AND id = ?/*maxEmpNo*/`,
wantQuery: `
SELECT
*
Expand Down Expand Up @@ -572,7 +569,6 @@ func TestEval(t *testing.T) {
EmpNo: 1000,
MaxEmpNo: 10,
},
// wantQuery: `SELECT * FROM person WHERE 1=1 AND employee_no < ?/*EmpNo*/ AND id = ?/*maxEmpNo*/`,
wantQuery: `
SELECT
*
Expand Down Expand Up @@ -671,7 +667,6 @@ func TestEval(t *testing.T) {
EmpNo: 1000,
MaxEmpNo: 10,
},
// wantQuery: `SELECT * FROM person WHERE 1=1 AND employee_no < 222 AND id = ?/*maxEmpNo*/`,
wantQuery: `
SELECT
*
Expand Down

0 comments on commit 325178d

Please sign in to comment.