We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b494610 commit e658032Copy full SHA for e658032
internal/verifier/unit_test_util.go
@@ -76,20 +76,6 @@ func (suite *WithMongodsTestSuite) SetMetaInstance(instance MongoInstance) {
76
suite.metaMongoInstance = instance
77
}
78
79
-func getDBName(t *testing.T, suffixes ...string) string {
80
- testNameSplit := strings.Split(t.Name(), "/")
81
- return strings.Join(
82
- append(
83
- []string{
84
- testNameSplit[len(testNameSplit)-1],
85
- "testDB",
86
- },
87
- suffixes...,
88
- ),
89
- "-",
90
- )
91
-}
92
-
93
func (suite *WithMongodsTestSuite) SetupSuite() {
94
if testing.Short() {
95
suite.T().Skip("Skipping mongod-requiring tests in short mode")
0 commit comments