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 fb2c0aa commit 88cb16dCopy full SHA for 88cb16d
modules/firebase/options.go
@@ -1,8 +1,6 @@
1
package firebase
2
3
import (
4
- "fmt"
5
-
6
"github.com/testcontainers/testcontainers-go"
7
)
8
@@ -44,7 +42,7 @@ const cacheFilePath = "/root/.cache/firebase"
44
42
45
43
// WithCache enables firebase binary cache based on session (meaningful only when multiple tests are used)
46
func WithCache() testcontainers.CustomizeRequestOption {
47
- volumeName := fmt.Sprintf("firestore-cache-%s", testcontainers.SessionID())
+ volumeName := "firestore-cache-" + testcontainers.SessionID()
48
49
return testcontainers.WithMounts(testcontainers.ContainerMount{
50
Source: testcontainers.DockerVolumeMountSource{
0 commit comments