Skip to content

Commit d8d55f9

Browse files
committed
fix test build
1 parent 0c8434c commit d8d55f9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

maintnotifications/e2e/scenario_tls_configs_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ func ТestTLSConfigurationsPushNotifications(t *testing.T) {
205205
}
206206

207207
// Wait for MIGRATING notification
208-
match, found = logCollector.WaitForLogMatchFunc(func(s string) bool {
208+
match, found := logCollector.WaitForLogMatchFunc(func(s string) bool {
209209
return strings.Contains(s, logs2.ProcessingNotificationMessage) && strings.Contains(s, "MIGRATING")
210210
}, 60*time.Second)
211211
if !found {
@@ -215,7 +215,7 @@ func ТestTLSConfigurationsPushNotifications(t *testing.T) {
215215
p("MIGRATING notification received for %s: %v", tlsTest.name, migrateData)
216216

217217
// Wait for migration to complete
218-
status, err = faultInjector.WaitForAction(ctx, migrateResp.ActionID,
218+
status, err := faultInjector.WaitForAction(ctx, migrateResp.ActionID,
219219
WithMaxWaitTime(240*time.Second),
220220
WithPollInterval(2*time.Second),
221221
)

0 commit comments

Comments
 (0)