Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix the expectations of the jruby-noasm integrity test - no more kryp…
Browse files Browse the repository at this point in the history
…t dependencies
mkristian committed Jan 30, 2015
1 parent f4f812e commit e963024
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions maven/jruby-noasm/src/it/integrity/verify.bsh
Original file line number Diff line number Diff line change
@@ -28,12 +28,12 @@ if ( !log.contains( expected ) )
{
throw new RuntimeException( "log file does not contain '" + expected + "'" );
}
expected = "gems count 9";
expected = "gems count 5";
if ( !log.contains( expected ) )
{
throw new RuntimeException( "log file does not contain '" + expected + "'" );
}
expected = "ffi,jar-dependencies,jruby-openssl,krypt,krypt-core,krypt-provider-jdk";
expected = "jar-dependencies,jruby-openssl";
if ( !log.contains( expected ) )
{
throw new RuntimeException( "log file does not contain '" + expected + "'" );

0 comments on commit e963024

Please sign in to comment.