Skip to content

Commit 01c0ba4

Browse files
committed
switch BC version in test
1 parent a15af3e commit 01c0ba4

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

maven/jruby/src/it/bouncycastle/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333

3434
<properties>
3535
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
36-
<bc.version>1.49</bc.version>
36+
<bc.version>1.47</bc.version>
3737
</properties>
3838

3939
<build>

maven/jruby/src/it/bouncycastle/src/test/java/org/jruby/its/BouncyCastleTestCase.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@ public void setupProvider() throws Exception{
2222

2323
@Test
2424
public void java(){
25-
assertEquals( "BouncyCastle Security Provider v1.49", new BouncyCastleProvider().getInfo() );
25+
assertEquals( "BouncyCastle Security Provider v1.47", new BouncyCastleProvider().getInfo() );
2626
}
2727

2828
@Test
2929
public void ruby(){
3030
ScriptingContainer container = new ScriptingContainer();
3131
Object result = container.parse( "require 'openssl'; Java::OrgBouncycastleJceProvider::BouncyCastleProvider.new.info").run();
32-
assertEquals( "BouncyCastle Security Provider v1.47", result.toString() );
32+
assertEquals( "BouncyCastle Security Provider v1.49", result.toString() );
3333
}
3434
}

0 commit comments

Comments
 (0)