Skip to content

Commit

Permalink
remove useless test (#3625)
Browse files Browse the repository at this point in the history
  • Loading branch information
gerardsn authored Dec 20, 2024
1 parent 23c43ba commit e1f5c2b
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions storage/session_memcached_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,6 @@ import (
"github.com/stretchr/testify/require"
)

func TestNewMemcachedSessionDatabase(t *testing.T) {
db := memcachedTestDatabase(t)

assert.NotNil(t, db)
}

func TestNewMemcachedSessionDatabase_GetStore(t *testing.T) {
db := memcachedTestDatabase(t)

Expand Down Expand Up @@ -177,6 +171,10 @@ func memcachedTestServer(t *testing.T) *minimemcached.MiniMemcached {
t.Fatal(err)
}
t.Cleanup(func() {
// Note on DATA RACE
// minimemcached.Run creates a new go routine to listen for new connections.
// In certain cases the new go routine may be created after/simultaneous with this cleanup resulting in a data race / nil pointer dereference.
// Mostly happens on CI during really short tests.
m.Close()
})
return m
Expand Down

0 comments on commit e1f5c2b

Please sign in to comment.