Update mssql_test.go

updated the test case, schema is now written in double quotes
This commit is contained in:
Kedar Kale
2019-03-22 12:30:44 +05:30
parent 26d7b048c7
commit 1bb3861210

View File

@@ -82,7 +82,7 @@ func TestMSSQLBackend_schema(t *testing.T) {
b, err := NewMSSQLBackend(map[string]string{ b, err := NewMSSQLBackend(map[string]string{
"server": server, "server": server,
"database": database, "database": database,
"schema": test, "schema": "test",
"table": table, "table": table,
"username": username, "username": username,
"password": password, "password": password,
@@ -102,4 +102,4 @@ func TestMSSQLBackend_schema(t *testing.T) {
physical.ExerciseBackend(t, b) physical.ExerciseBackend(t, b)
physical.ExerciseBackend_ListPrefix(t, b) physical.ExerciseBackend_ListPrefix(t, b)
} }