Этот коммит содержится в:
Chris
2017-10-30 11:57:24 -05:00
коммит произвёл GitHub
родитель 63df41b911
Коммит c5e8cb25ca
49 изменённых файлов: 96 добавлений и 184 удалений

Просмотреть файл

@@ -184,7 +184,7 @@ func TestCheckPendingNotifications(t *testing.T) {
if post.Message != "post1" {
t.Fatal("should've received post1 first")
}
case _ = <-timeout:
case <-timeout:
t.Fatal("timed out waiting for first post notification")
}
@@ -193,7 +193,7 @@ func TestCheckPendingNotifications(t *testing.T) {
if post.Message != "post2" {
t.Fatal("should've received post2 second")
}
case _ = <-timeout:
case <-timeout:
t.Fatal("timed out waiting for second post notification")
}
}