File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
components/blobserve/pkg/blobserve Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ import (
13
13
"path/filepath"
14
14
"testing"
15
15
16
+ "github.com/gitpod-io/gitpod/blobserve/pkg/config"
16
17
"github.com/google/go-cmp/cmp"
17
18
)
18
19
@@ -126,7 +127,7 @@ func Test_inlineVars(t *testing.T) {
126
127
tests := []struct {
127
128
Name string
128
129
InlineVars * BlobserveInlineVars
129
- Replacements []InlineReplacement
130
+ Replacements []config. InlineReplacement
130
131
Content string
131
132
Expected string
132
133
}{
@@ -141,7 +142,7 @@ func Test_inlineVars(t *testing.T) {
141
142
},
142
143
{
143
144
Name : "no inline vars" ,
144
- Replacements : []InlineReplacement {
145
+ Replacements : []config. InlineReplacement {
145
146
{Search : "aaa" , Replacement : "${ide}" },
146
147
{Search : "bbb" , Replacement : "${supervisor}" },
147
148
},
@@ -154,7 +155,7 @@ func Test_inlineVars(t *testing.T) {
154
155
IDE : "foo" ,
155
156
SupervisorImage : "bar" ,
156
157
},
157
- Replacements : []InlineReplacement {
158
+ Replacements : []config. InlineReplacement {
158
159
{Search : "aaa" , Replacement : "${ide}" },
159
160
{Search : "bbb" , Replacement : "${supervisor}" },
160
161
},
You can’t perform that action at this time.
0 commit comments