Removed faulty test
This commit is contained in:
parent
d6c102d1b8
commit
f4180eb359
|
|
@ -173,18 +173,6 @@ public class Jackson2JsonDecoderTests extends AbstractDataBufferAllocatingTestCa
|
||||||
.verifyComplete();
|
.verifyComplete();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
|
||||||
@Ignore
|
|
||||||
public void decodeEmptyArrayToMono() throws Exception {
|
|
||||||
Flux<DataBuffer> source = Flux.just(stringBuffer("[]"));
|
|
||||||
ResolvableType elementType = forClass(Pojo.class);
|
|
||||||
Mono<Object> mono = new Jackson2JsonDecoder().decodeToMono(source, elementType, null, emptyMap());
|
|
||||||
|
|
||||||
StepVerifier.create(mono)
|
|
||||||
.expectNextCount(0)
|
|
||||||
.verifyComplete();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void invalidData() throws Exception {
|
public void invalidData() throws Exception {
|
||||||
Flux<DataBuffer> source = Flux.just(stringBuffer( "{\"foofoo\": \"foofoo\", \"barbar\": \"barbar\"}"));
|
Flux<DataBuffer> source = Flux.just(stringBuffer( "{\"foofoo\": \"foofoo\", \"barbar\": \"barbar\"}"));
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue