Skip to content

Commit b805105

Browse files
committed
fix build error
Signed-off-by: Stephanie <[email protected]>
1 parent 819b6b4 commit b805105

File tree

11 files changed

+15
-8
lines changed

11 files changed

+15
-8
lines changed

generator/crds/zz_generated.markerhelp.go

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

generator/getters/zz_generated.markerhelp.go

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

generator/interfaces/zz_generated.markerhelp.go

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

generator/overrides/zz_generated.markerhelp.go

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

generator/schemas/zz_generated.markerhelp.go

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

generator/validate/zz_generated.markerhelp.go

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pkg/apis/workspaces/v1alpha2/zz_generated.deepcopy.go

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

test/v200/json/component-parent-tests.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
},
7070
{
7171
"FileName" : "componentContainerEndpointLongName.yaml",
72-
"ExpectOutcome" : "length must be <= 63",
72+
"ExpectOutcome" : "length must be <= 15",
7373
"Files": ["devfiles/components/componentStart.yaml",
7474
"devfiles/components/containerEndpointLongName.yaml"]
7575
},
@@ -142,7 +142,7 @@
142142
},
143143
{
144144
"FileName" : "componentKubernetesEndpointLongName.yaml",
145-
"ExpectOutcome" : "length must be <= 63",
145+
"ExpectOutcome" : "length must be <= 15",
146146
"Files": ["devfiles/components/componentStart.yaml",
147147
"devfiles/components/kubernetesEndpointLongName.yaml"]
148148
},
@@ -215,7 +215,7 @@
215215
},
216216
{
217217
"FileName" : "componentOpenshiftEndpointLongName.yaml",
218-
"ExpectOutcome" : "length must be <= 63",
218+
"ExpectOutcome" : "length must be <= 15",
219219
"Files": ["devfiles/components/componentStart.yaml",
220220
"devfiles/components/openshiftEndpointLongName.yaml"]
221221
},

test/v200/json/component-tests.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@
7575
},
7676
{
7777
"FileName" : "componentContainerEndpointLongName.yaml",
78-
"ExpectOutcome" : "length must be <= 63",
78+
"ExpectOutcome" : "length must be <= 15",
7979
"Files": ["devfiles/components/componentStart.yaml",
8080
"devfiles/components/containerEndpointLongName.yaml"]
8181
},
@@ -166,7 +166,7 @@
166166
},
167167
{
168168
"FileName" : "componentKubernetesEndpointLongName.yaml",
169-
"ExpectOutcome" : "length must be <= 63",
169+
"ExpectOutcome" : "length must be <= 15",
170170
"Files": ["devfiles/components/componentStart.yaml",
171171
"devfiles/components/kubernetesEndpointLongName.yaml"]
172172
},
@@ -245,7 +245,7 @@
245245
},
246246
{
247247
"FileName" : "componentOpenshiftEndpointLongName.yaml",
248-
"ExpectOutcome" : "length must be <= 63",
248+
"ExpectOutcome" : "length must be <= 15",
249249
"Files": ["devfiles/components/componentStart.yaml",
250250
"devfiles/components/openshiftEndpointLongName.yaml"]
251251
},

test/v200/utils/common/endpoint_test_utils.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ func (devfile *TestDevfile) CreateEndpoints() []schema.Endpoint {
4848

4949
endpoint := schema.Endpoint{}
5050

51-
endpoint.Name = GetRandomUniqueString(GetRandomNumber(5, 24), true)
51+
endpoint.Name = GetRandomUniqueString(GetRandomNumber(5, 10), true)
5252
LogInfoMessage(fmt.Sprintf(" ....... add endpoint %d name : %s", i, endpoint.Name))
5353

5454
if GetBinaryDecision() {

test/v200/utils/common/parent_endpoint-test-utils.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ func (devfile *TestDevfile) CreateParentEndpoints() []schema.EndpointParentOverr
1818

1919
endpoint := schema.EndpointParentOverride{}
2020

21-
endpoint.Name = GetRandomUniqueString(GetRandomNumber(5, 24), true)
21+
endpoint.Name = GetRandomUniqueString(GetRandomNumber(5, 10), true)
2222
LogInfoMessage(fmt.Sprintf(" ....... add endpoint %d name : %s", i, endpoint.Name))
2323

2424
if GetBinaryDecision() {

0 commit comments

Comments
 (0)