@@ -1198,7 +1198,7 @@ func TestLongData(t *testing.T) {
11981198 dbt .Fatalf ("LONGBLOB: length in: %d, length out: %d" , len (inS ), len (out ))
11991199 }
12001200 if rows .Next () {
1201- dbt .Error ("LONGBLOB: unexpexted row" )
1201+ dbt .Error ("LONGBLOB: unexpected row" )
12021202 }
12031203 } else {
12041204 dbt .Fatalf ("LONGBLOB: no data" )
@@ -1217,7 +1217,7 @@ func TestLongData(t *testing.T) {
12171217 dbt .Fatalf ("LONGBLOB: length in: %d, length out: %d" , len (in ), len (out ))
12181218 }
12191219 if rows .Next () {
1220- dbt .Error ("LONGBLOB: unexpexted row" )
1220+ dbt .Error ("LONGBLOB: unexpected row" )
12211221 }
12221222 } else {
12231223 if err = rows .Err (); err != nil {
@@ -1293,7 +1293,7 @@ func TestLoadData(t *testing.T) {
12931293 dbt .Fatalf ("unexpected row count: got %d, want 0" , count )
12941294 }
12951295
1296- // Then fille File with data and try to load it
1296+ // Then fill File with data and try to load it
12971297 file .WriteString ("1\t a string\n 2\t a string containing a \\ t\n 3\t a string containing a \\ n\n 4\t a string containing both \\ t\\ n\n " )
12981298 file .Close ()
12991299 dbt .mustExec (fmt .Sprintf ("LOAD DATA LOCAL INFILE %q INTO TABLE test" , file .Name ()))
@@ -1899,7 +1899,7 @@ func TestConcurrent(t *testing.T) {
18991899 }(i )
19001900 }
19011901
1902- // wait until all conections are open
1902+ // wait until all connections are open
19031903 wg .Wait ()
19041904
19051905 if fatalError != "" {
@@ -1948,7 +1948,7 @@ func TestCustomDial(t *testing.T) {
19481948 t .Skipf ("MySQL server not running on %s" , netAddr )
19491949 }
19501950
1951- // our custom dial function which justs wraps net.Dial here
1951+ // our custom dial function which just wraps net.Dial here
19521952 RegisterDialContext ("mydial" , func (ctx context.Context , addr string ) (net.Conn , error ) {
19531953 var d net.Dialer
19541954 return d .DialContext (ctx , prot , addr )
0 commit comments