Skip flaky transport test (#8295)
This commit is contained in:
parent
c79b2413cc
commit
c0c2bb3049
|
|
@ -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);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue