This is an automated email from the ASF dual-hosted git repository.
rmannibucau pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/johnzon.git
The following commit(s) were added to refs/heads/master by this push:
new d6723b7 Enabled test as it seems to run well.
d6723b7 is described below
commit d6723b7c9a5ee00d6f08f1ef7c2e33aa459e5867
Author: Markus KARG <[email protected]>
AuthorDate: Sun Sep 22 16:43:02 2019 +0000
Enabled test as it seems to run well.
The reason why this test was disabled seems to be gone.
Signed-off-by: Markus KARG <[email protected]>
---
.../org/apache/johnzon/jsonb/serializer/DeserializationContextTest.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/johnzon-jsonb/src/test/java/org/apache/johnzon/jsonb/serializer/DeserializationContextTest.java
b/johnzon-jsonb/src/test/java/org/apache/johnzon/jsonb/serializer/DeserializationContextTest.java
index ddb0ec1..1be5e35 100644
---
a/johnzon-jsonb/src/test/java/org/apache/johnzon/jsonb/serializer/DeserializationContextTest.java
+++
b/johnzon-jsonb/src/test/java/org/apache/johnzon/jsonb/serializer/DeserializationContextTest.java
@@ -50,7 +50,7 @@ public class DeserializationContextTest {
final Foo foo = jsonb.fromJson("{\"bar\":{},\"bars\":[]}",
Foo.class);
assertNotNull(foo);
assertNotNull(foo.bar);
- // assertNotNull(foo.bars); <- There seems to be a nother bug as
this one fails even without custom deserialization!
+ assertNotNull(foo.bars);
}
try (final Jsonb jsonb = JsonbBuilder.create(new
JsonbConfig().withDeserializers(new CustomDeserializer()))) {