Skip flaky transport test (#8295)

This commit is contained in:
Mikael Mengistu 2019-03-07 18:26:38 -08:00 committed by GitHub
parent c79b2413cc
commit c0c2bb3049
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -16,6 +16,7 @@ import java.util.concurrent.atomic.AtomicReference;
import io.reactivex.subjects.PublishSubject; import io.reactivex.subjects.PublishSubject;
import io.reactivex.subjects.ReplaySubject; import io.reactivex.subjects.ReplaySubject;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test; import org.junit.jupiter.api.Test;
import io.reactivex.Observable; import io.reactivex.Observable;
@ -1494,6 +1495,7 @@ class HubConnectionTest {
assertEquals("{\"protocol\":\"json\",\"version\":1}" + RECORD_SEPARATOR, sentMessages[0]); assertEquals("{\"protocol\":\"json\",\"version\":1}" + RECORD_SEPARATOR, sentMessages[0]);
} }
@Disabled("https://github.com/aspnet/AspNetCore/issues/8262")
@Test @Test
public void TransportAllUsesLongPollingWhenServerOnlySupportLongPolling() { public void TransportAllUsesLongPollingWhenServerOnlySupportLongPolling() {
AtomicInteger requestCount = new AtomicInteger(0); AtomicInteger requestCount = new AtomicInteger(0);