@@ -35,6 +35,7 @@ func TestEnableVolumeReplication(t *testing.T) {
3535 },
3636 }
3737 client := mockedEnableReplication
38+
3839 resp , err := client .EnableVolumeReplication ("" , "" , nil , nil )
3940 require .Equal (t , & replicationlib.EnableVolumeReplicationResponse {}, resp )
4041 require .NoError (t , err )
@@ -60,6 +61,7 @@ func TestDisableVolumeReplication(t *testing.T) {
6061 },
6162 }
6263 client := mockedDisableReplication
64+
6365 resp , err := client .DisableVolumeReplication ("" , "" , nil , nil )
6466 require .Equal (t , & replicationlib.DisableVolumeReplicationResponse {}, resp )
6567 require .NoError (t , err )
@@ -85,6 +87,7 @@ func TestPromoteVolume(t *testing.T) {
8587 },
8688 }
8789 client := mockedPromoteVolume
90+
8891 resp , err := client .PromoteVolume ("" , "" , false , nil , nil )
8992 require .Equal (t , & replicationlib.PromoteVolumeResponse {}, resp )
9093 require .NoError (t , err )
@@ -110,6 +113,7 @@ func TestDemoteVolume(t *testing.T) {
110113 },
111114 }
112115 client := mockedDemoteVolume
116+
113117 resp , err := client .DemoteVolume ("" , "" , nil , nil )
114118 require .Equal (t , & replicationlib.DemoteVolumeResponse {}, resp )
115119 require .NoError (t , err )
@@ -135,6 +139,7 @@ func TestResyncVolume(t *testing.T) {
135139 },
136140 }
137141 client := mockedResyncVolume
142+
138143 resp , err := client .ResyncVolume ("" , "" , nil , nil )
139144 require .Equal (t , & replicationlib.ResyncVolumeResponse {}, resp )
140145 require .NoError (t , err )
0 commit comments