Skip to content

Commit

Permalink
test: Fix stream e2e tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jachym-tousek-keboola committed Dec 6, 2024
1 parent 73c48a2 commit fd8553d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/stream/api/api_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ package api
import (
"context"
"crypto/rand"
"encoding/base64"
"fmt"
"os"
"path/filepath"
Expand Down Expand Up @@ -78,7 +79,7 @@ func TestStreamApiE2E(t *testing.T) {
"STREAM_ETCD_USERNAME": etcdCfg.Username,
"STREAM_ETCD_PASSWORD": etcdCfg.Password,
"STREAM_ENCRYPTION_PROVIDER": "native",
"STREAM_ENCRYPTION_NATIVE_SECRET_KEY": string(secretKey),
"STREAM_ENCRYPTION_NATIVE_SECRET_KEY": base64.StdEncoding.EncodeToString(secretKey),
})

// Run the test
Expand Down

0 comments on commit fd8553d

Please sign in to comment.