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 5b31916 commit 4fc9667Copy full SHA for 4fc9667
internal/cmd/testatlas/atlas_test.go
@@ -199,7 +199,7 @@ func createAtlasX509DevCertKeyFile(t *testing.T) string {
199
certBytes, err := base64.StdEncoding.DecodeString(b64)
200
require.NoError(t, err, "failed to decode ATLAS_X509_DEV_CERT_BASE64")
201
202
- certFilePath := t.TempDir() + "/atlas_x509_dev_cert.pem"
+ certFilePath := filepath.Join(t.TempDir(), "atlas_x509_dev_cert.pem")
203
204
err = os.WriteFile(certFilePath, certBytes, 0600)
205
require.NoError(t, err, "failed to write ATLAS_X509_DEV_CERT_BASE64 to file")
0 commit comments