You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@johnzon.apache.org by rm...@apache.org on 2019/04/02 13:19:35 UTC

[johnzon] branch master updated: stupid missed idea flush

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 6a7bdab  stupid missed idea flush
6a7bdab is described below

commit 6a7bdab6695cd704c60684596ba7ec58a79692e7
Author: Romain Manni-Bucau <rm...@gmail.com>
AuthorDate: Tue Apr 2 15:19:31 2019 +0200

    stupid missed idea flush
---
 .../src/test/java/org/apache/johnzon/jsonb/SerializerTest.java          | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/johnzon-jsonb/src/test/java/org/apache/johnzon/jsonb/SerializerTest.java b/johnzon-jsonb/src/test/java/org/apache/johnzon/jsonb/SerializerTest.java
index 030f8fc..5838130 100644
--- a/johnzon-jsonb/src/test/java/org/apache/johnzon/jsonb/SerializerTest.java
+++ b/johnzon-jsonb/src/test/java/org/apache/johnzon/jsonb/SerializerTest.java
@@ -114,7 +114,7 @@ public class SerializerTest {
         final Jsonb jsonb = JsonbBuilder.create();
         final UUIDWrapper wrapper = new UUIDWrapper();
         wrapper.uuid = UUID.randomUUID();
-        assertEquals("{\"uuid\":\"4a34a0e8-c0c1-45f7-9fa4-2e28f15fd9be\"}", jsonb.toJson(wrapper));
+        assertEquals("{\"uuid\":\"" + wrapper.uuid + "\"}", jsonb.toJson(wrapper));
         jsonb.close();
     }