File tree 3 files changed +5
-2
lines changed
3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ func TestLogOptionsDrift(t *testing.T) {
16
16
name := popts .Field (i ).Name
17
17
doptsField , found := dopts .FieldByName (name )
18
18
// TODO: Add this option to deployment config log options
19
- if name == "InsecureSkipTLSVerifyBackend" {
19
+ if name == "InsecureSkipTLSVerifyBackend" || name == "Stream" {
20
20
continue
21
21
}
22
22
if ! found {
Original file line number Diff line number Diff line change @@ -15,6 +15,9 @@ func TestLogOptionsDrift(t *testing.T) {
15
15
// Verify name
16
16
name := popts .Field (i ).Name
17
17
boptsField , found := bopts .FieldByName (name )
18
+ if name == "Stream" {
19
+ continue
20
+ }
18
21
if ! found {
19
22
t .Errorf ("buildLogOptions drifting from podLogOptions! Field %q wasn't found!" , name )
20
23
}
Original file line number Diff line number Diff line change @@ -3884,7 +3884,7 @@ func TestValidateBuildVolumes(t *testing.T) {
3884
3884
},
3885
3885
},
3886
3886
},
3887
- errors : []string {"must have at most 63 bytes" },
3887
+ errors : []string {"Too long: may not be more than 63 bytes" },
3888
3888
},
3889
3889
{
3890
3890
name : "csi driver name that is not a DNS 1123 subdomain should fail" ,
You can’t perform that action at this time.
0 commit comments