File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ var _ = Describe("Helpers", func() {
45
45
client , err := cloud .NewClient (filepath )
46
46
47
47
Ω (client ).Should (BeNil ())
48
- Ω (err .Error ()).Should (ContainSubstring ("Section Global not found" ))
48
+ Ω (err .Error ()).Should (ContainSubstring ("section Global not found" ))
49
49
})
50
50
})
51
51
Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ var _ = Describe("Instance", func() {
82
82
It ("Handles finding more than one VM instance by ID" , func () {
83
83
vms .EXPECT ().GetVirtualMachinesMetricByID (* csMachine .Spec .InstanceID ).Return (nil , 2 , nil )
84
84
Ω (client .ResolveVMInstanceDetails (csMachine )).
85
- Should (MatchError ("Found more than one VM Instance with ID instance-id. " ))
85
+ Should (MatchError ("found more than one VM Instance with ID instance-id" ))
86
86
})
87
87
88
88
It ("sets csMachine spec and status values when VM instance found by ID" , func () {
@@ -105,7 +105,7 @@ var _ = Describe("Instance", func() {
105
105
vms .EXPECT ().GetVirtualMachinesMetricByName (csMachine .Name ).Return (nil , 2 , nil )
106
106
107
107
Ω (client .ResolveVMInstanceDetails (csMachine )).Should (
108
- MatchError ("Found more than one VM Instance with name instance-name. " ))
108
+ MatchError ("found more than one VM Instance with name instance-name" ))
109
109
})
110
110
111
111
It ("sets csMachine spec and status values when VM instance found by Name" , func () {
You can’t perform that action at this time.
0 commit comments