This is an automated email from the ASF dual-hosted git repository. rombert pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-distribution-avro-serializer.git
commit 358bb60469e045620bd310d2824f4db256838e07 Author: Tommaso Teofili <[email protected]> AuthorDate: Tue Apr 11 09:04:05 2017 +0000 SLING-4075 - added some tests, minor static analysis related fixes git-svn-id: https://svn.apache.org/repos/asf/sling/trunk@1790941 13f79535-47bb-0310-9956-ffa450edef68 --- .../serialization/impl/avro/AvroContentSerializerTest.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/test/java/org/apache/sling/distribution/serialization/impl/avro/AvroContentSerializerTest.java b/src/test/java/org/apache/sling/distribution/serialization/impl/avro/AvroContentSerializerTest.java index f8d4811..69745cc 100644 --- a/src/test/java/org/apache/sling/distribution/serialization/impl/avro/AvroContentSerializerTest.java +++ b/src/test/java/org/apache/sling/distribution/serialization/impl/avro/AvroContentSerializerTest.java @@ -48,13 +48,12 @@ import static org.junit.Assert.assertTrue; */ public class AvroContentSerializerTest { - private MockHelper helper; private ResourceResolver resourceResolver; @Before public void setUp() throws Exception { resourceResolver = new MockResourceResolverFactory().getResourceResolver(null); - helper = MockHelper.create(resourceResolver).resource("/libs").p("prop", "value") + MockHelper helper = MockHelper.create(resourceResolver).resource("/libs").p("prop", "value") .resource("sub").p("sub", "hello") .resource(".sameLevel") .resource("/apps").p("foo", "baa"); -- To stop receiving notification emails like this one, please contact "[email protected]" <[email protected]>.
