Skip to content

Commit 4f414a8

Browse files
committed
test
1 parent 3239700 commit 4f414a8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

orm_select_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ var tdb, _ = sql.Open("mysql", "rfamro@tcp(mysql-rfam-public.ebi.ac.uk:4497)/Rfa
1111

1212
func TestSelect(t *testing.T) {
1313
t.Run("query_raw", func(t *testing.T) {
14-
data, query := orm.NewQueryRaw(tdb, "family").Limit(5).GetRows()
14+
data, query := orm.NewQueryRaw("family", tdb).Limit(5).GetRows()
1515
t.Log(data)
1616
t.Log(query.Sql())
1717
t.Log(query.Error())

0 commit comments

Comments
 (0)