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 (
1313 "path/filepath"
1414 "testing"
1515
16+ "github.com/gitpod-io/gitpod/blobserve/pkg/config"
1617 "github.com/google/go-cmp/cmp"
1718)
1819
@@ -126,7 +127,7 @@ func Test_inlineVars(t *testing.T) {
126127 tests := []struct {
127128 Name string
128129 InlineVars * BlobserveInlineVars
129- Replacements []InlineReplacement
130+ Replacements []config. InlineReplacement
130131 Content string
131132 Expected string
132133 }{
@@ -141,7 +142,7 @@ func Test_inlineVars(t *testing.T) {
141142 },
142143 {
143144 Name : "no inline vars" ,
144- Replacements : []InlineReplacement {
145+ Replacements : []config. InlineReplacement {
145146 {Search : "aaa" , Replacement : "${ide}" },
146147 {Search : "bbb" , Replacement : "${supervisor}" },
147148 },
@@ -154,7 +155,7 @@ func Test_inlineVars(t *testing.T) {
154155 IDE : "foo" ,
155156 SupervisorImage : "bar" ,
156157 },
157- Replacements : []InlineReplacement {
158+ Replacements : []config. InlineReplacement {
158159 {Search : "aaa" , Replacement : "${ide}" },
159160 {Search : "bbb" , Replacement : "${supervisor}" },
160161 },
You can’t perform that action at this time.
0 commit comments