Skip to content

Commit 227797b

Browse files
committed
Addressed review comments
1 parent 2ea4c41 commit 227797b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

cloud/scope/powervs_cluster_test.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1777,22 +1777,22 @@ func TestCheckDHCPServerStatus(t *testing.T) {
17771777
expectedStatus bool
17781778
}{
17791779
{
1780-
name: "test DHCP server state build",
1780+
name: "DHCP server is in build state",
17811781
dhcpServer: models.DHCPServerDetail{ID: ptr.To("dhcpIDBuild"), Status: ptr.To(string(infrav1beta2.DHCPServerStateBuild))},
17821782
expectedStatus: false,
17831783
},
17841784
{
1785-
name: "test DHCP server state active",
1785+
name: "DHCP server is in active state",
17861786
dhcpServer: models.DHCPServerDetail{ID: ptr.To("dhcpIDActive"), Status: ptr.To(string(infrav1beta2.DHCPServerStateActive))},
17871787
expectedStatus: true,
17881788
},
17891789
{
1790-
name: "test DHCP server state error",
1790+
name: "DHCP server is in error state",
17911791
dhcpServer: models.DHCPServerDetail{ID: ptr.To("dhcpIDError"), Status: ptr.To(string(infrav1beta2.DHCPServerStateError))},
17921792
expectedStatus: false,
17931793
},
17941794
{
1795-
name: "test DHCP server state invalid value",
1795+
name: "DHCP server is in invalid state",
17961796
dhcpServer: models.DHCPServerDetail{ID: ptr.To("dhcpIDError"), Status: ptr.To("InvalidState")},
17971797
expectedStatus: false,
17981798
},

0 commit comments

Comments
 (0)