Skip to content

Commit

Permalink
chore: rm sqlite for edge grpc_test
Browse files Browse the repository at this point in the history
Signed-off-by: Mark Phelps <[email protected]>
  • Loading branch information
markphelps committed Oct 1, 2024
1 parent 3b43e25 commit 2e67c3b
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions internal/cmd/edge/grpc_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@ package edge

import (
"context"
"fmt"
"path/filepath"
"testing"

"github.com/stretchr/testify/assert"
Expand All @@ -14,7 +12,6 @@ import (
)

func TestNewGRPCServer(t *testing.T) {
tmp := t.TempDir()
cfg := &config.Config{
Storage: config.StorageConfig{
Type: config.LocalStorageType,
Expand All @@ -23,7 +20,6 @@ func TestNewGRPCServer(t *testing.T) {
},
},
}
cfg.Database.URL = fmt.Sprintf("file:%s", filepath.Join(tmp, "flipt.db"))
ctx, cancel := context.WithCancel(context.Background())
t.Cleanup(cancel)
s, err := NewGRPCServer(ctx, zaptest.NewLogger(t), cfg, info.Flipt{})
Expand Down

0 comments on commit 2e67c3b

Please sign in to comment.