Update JsonbJaxRsTest.java fix padding
Project: http://git-wip-us.apache.org/repos/asf/johnzon/repo Commit: http://git-wip-us.apache.org/repos/asf/johnzon/commit/c81c99f7 Tree: http://git-wip-us.apache.org/repos/asf/johnzon/tree/c81c99f7 Diff: http://git-wip-us.apache.org/repos/asf/johnzon/diff/c81c99f7 Branch: refs/heads/master Commit: c81c99f70c16f6ef18261e641b9bb02a184c8c00 Parents: 5a51ca7 Author: amoscatelli <[email protected]> Authored: Tue Mar 27 13:01:13 2018 +0200 Committer: GitHub <[email protected]> Committed: Tue Mar 27 13:01:13 2018 +0200 ---------------------------------------------------------------------- .../test/java/org/apache/johnzon/jsonb/jaxrs/JsonbJaxRsTest.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/johnzon/blob/c81c99f7/johnzon-jsonb/src/test/java/org/apache/johnzon/jsonb/jaxrs/JsonbJaxRsTest.java ---------------------------------------------------------------------- diff --git a/johnzon-jsonb/src/test/java/org/apache/johnzon/jsonb/jaxrs/JsonbJaxRsTest.java b/johnzon-jsonb/src/test/java/org/apache/johnzon/jsonb/jaxrs/JsonbJaxRsTest.java index c01155c..79d263d 100644 --- a/johnzon-jsonb/src/test/java/org/apache/johnzon/jsonb/jaxrs/JsonbJaxRsTest.java +++ b/johnzon-jsonb/src/test/java/org/apache/johnzon/jsonb/jaxrs/JsonbJaxRsTest.java @@ -136,7 +136,7 @@ public class JsonbJaxRsTest { .get(byte[].class); Assert.assertEquals(100, content.length); - for (int i = 0; i < 100; i++) { + for (int i=0; i < 100; i++) { Assert.assertEquals((byte) i, content[i]); } } @@ -247,7 +247,7 @@ public class JsonbJaxRsTest { @Path("mybinary") public byte[] binary() { byte[] content = new byte[100]; - for (int i = 0; i < 100; i++) { + for (int i=0; i < 100; i++) { content[i] = (byte) i; }
