File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -1777,22 +1777,22 @@ func TestCheckDHCPServerStatus(t *testing.T) {
1777
1777
expectedStatus bool
1778
1778
}{
1779
1779
{
1780
- name : "test DHCP server state build" ,
1780
+ name : "DHCP server is in build state " ,
1781
1781
dhcpServer : models.DHCPServerDetail {ID : ptr .To ("dhcpIDBuild" ), Status : ptr .To (string (infrav1beta2 .DHCPServerStateBuild ))},
1782
1782
expectedStatus : false ,
1783
1783
},
1784
1784
{
1785
- name : "test DHCP server state active" ,
1785
+ name : "DHCP server is in active state " ,
1786
1786
dhcpServer : models.DHCPServerDetail {ID : ptr .To ("dhcpIDActive" ), Status : ptr .To (string (infrav1beta2 .DHCPServerStateActive ))},
1787
1787
expectedStatus : true ,
1788
1788
},
1789
1789
{
1790
- name : "test DHCP server state error" ,
1790
+ name : "DHCP server is in error state " ,
1791
1791
dhcpServer : models.DHCPServerDetail {ID : ptr .To ("dhcpIDError" ), Status : ptr .To (string (infrav1beta2 .DHCPServerStateError ))},
1792
1792
expectedStatus : false ,
1793
1793
},
1794
1794
{
1795
- name : "test DHCP server state invalid value " ,
1795
+ name : "DHCP server is in invalid state " ,
1796
1796
dhcpServer : models.DHCPServerDetail {ID : ptr .To ("dhcpIDError" ), Status : ptr .To ("InvalidState" )},
1797
1797
expectedStatus : false ,
1798
1798
},
You can’t perform that action at this time.
0 commit comments