Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions tavern/internal/secrets/debug_file_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,10 @@ func createTestSecrets(t *testing.T) string {
tmpDir := t.TempDir()
secretsPath := path.Join(tmpDir, "secrets.yaml")
data := []byte(`
secrets:
- key: TAVERN_PRIVATE_KEY
value: !!binary Fe8E/SVf7MLgCHzBWvjdnavejsJijJZD9mPvLQbgybE=
- key: super_secret_test_data
value: hello world!
- key: TAVERN_PRIVATE_KEY
value: !!binary Fe8E/SVf7MLgCHzBWvjdnavejsJijJZD9mPvLQbgybE=
- key: super_secret_test_data
value: hello world!
`)
err := os.WriteFile(secretsPath, data, 0644)
if err != nil {
Expand Down