You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@aries.apache.org by cs...@apache.org on 2018/04/24 11:49:55 UTC

aries-rsa git commit: Fix test

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 <cs...@adobe.com>
Authored: Tue Apr 24 13:49:47 2018 +0200
Committer: Christian Schneider <cs...@adobe.com>
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);