Skip to content

Commit 288af29

Browse files
committed
fix driver_test.go
1 parent 23ca809 commit 288af29

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

driver_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1293,7 +1293,7 @@ func TestLoadData(t *testing.T) {
12931293
_, err = dbt.db.Exec("LOAD DATA LOCAL INFILE 'Reader::doesnotexist' INTO TABLE test")
12941294
if err == nil {
12951295
dbt.Fatal("load non-existent Reader didn't fail")
1296-
} else if err.Error() != "Reader 'doesnotexist' is not registered" {
1296+
} else if err.Error() != "reader 'doesnotexist' is not registered" {
12971297
dbt.Fatal(err.Error())
12981298
}
12991299
})

0 commit comments

Comments
 (0)