Skip to content

Commit

Permalink
fix dsn for mssql (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
JunNishimura committed Mar 31, 2024
1 parent 50ed18c commit 7778ebb
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ jobs:
env:
MSSQL_SA_PASSWORD: "Password123"
ACCEPT_EULA: "Y"
DBNAME: "test"
ports:
- 1433:1433
steps:
Expand Down
2 changes: 1 addition & 1 deletion adapter_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ func TestBunAdapters(t *testing.T) {
testSaveLoad(t, a)
testAutoSave(t, a)

a = initAdapter(t, "mssql", "sqlserver://sa:Password123@localhost:1433?database=test")
a = initAdapter(t, "mssql", "sqlserver://sa:Password123@localhost:1433?database=master")
testSaveLoad(t, a)
testAutoSave(t, a)
}
Expand Down

0 comments on commit 7778ebb

Please sign in to comment.