Skip to content

Commit

Permalink
remove
Browse files Browse the repository at this point in the history
  • Loading branch information
mfridman committed Oct 7, 2023
1 parent f69c190 commit 933eebb
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions internal/sqladapter/store_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,19 +33,6 @@ func TestStore(t *testing.T) {
_, err = sqladapter.NewStore("", "foo")
check.HasError(t, err)
})
// t.Run("failures", func(t *testing.T) {
// dir := t.TempDir()
// db, err := sql.Open("sqlite", filepath.Join(dir, "sql_embed.db"))
// check.NoError(t, err)
// store, err := sqladapter.NewStore("sqlite3", "test_goose_db_version")
// check.NoError(t, err)
// // Test CreateVersionTable failure.
// err = store.CreateVersionTable(context.Background(), db)
// check.NoError(t, err)
// err = store.InsertOrDelete(context.Background(), db, false, math.MaxInt64)
// fmt.Println(err)
// check.HasError(t, err)
// })
t.Run("postgres", func(t *testing.T) {
if testing.Short() {
t.Skip("skip long-running test")
Expand Down

0 comments on commit 933eebb

Please sign in to comment.