Repository: aries-rsa Updated Branches: refs/heads/master c5b768f3d -> 21ecfa9e0
Fix test Project: http://git-wip-us.apache.org/repos/asf/aries-rsa/repo Commit: http://git-wip-us.apache.org/repos/asf/aries-rsa/commit/21ecfa9e Tree: http://git-wip-us.apache.org/repos/asf/aries-rsa/tree/21ecfa9e Diff: http://git-wip-us.apache.org/repos/asf/aries-rsa/diff/21ecfa9e Branch: refs/heads/master Commit: 21ecfa9e06f7cfcdadf25ecfcc6d9992b2c9948f Parents: c5b768f Author: Christian Schneider <[email protected]> Authored: Tue Apr 24 13:49:47 2018 +0200 Committer: Christian Schneider <[email protected]> Committed: Tue Apr 24 13:49:47 2018 +0200 ---------------------------------------------------------------------- .../aries/rsa/provider/fastbin/streams/InputStreamProxyTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/aries-rsa/blob/21ecfa9e/provider/fastbin/src/test/java/org/apache/aries/rsa/provider/fastbin/streams/InputStreamProxyTest.java ---------------------------------------------------------------------- diff --git a/provider/fastbin/src/test/java/org/apache/aries/rsa/provider/fastbin/streams/InputStreamProxyTest.java b/provider/fastbin/src/test/java/org/apache/aries/rsa/provider/fastbin/streams/InputStreamProxyTest.java index 82ac9cf..99239b7 100644 --- a/provider/fastbin/src/test/java/org/apache/aries/rsa/provider/fastbin/streams/InputStreamProxyTest.java +++ b/provider/fastbin/src/test/java/org/apache/aries/rsa/provider/fastbin/streams/InputStreamProxyTest.java @@ -53,7 +53,7 @@ public class InputStreamProxyTest { int id = streamProvider.registerStream(new ByteArrayInputStream(data)); @SuppressWarnings("resource") - InputStreamProxy fixture = new InputStreamProxy(id, "", 1); + InputStreamProxy fixture = new InputStreamProxy(id, ""); fixture.setStreamProvider(streamProvider); assertEquals(length, fixture.read(result)); assertArrayEquals(data, result);
