Skip to content

Commit

Permalink
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
  • Loading branch information
mkristian committed Jan 30, 2015
1 parent f4f812e commit 8271736
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion maven/jruby-noasm/src/it/integrity/pom.xml
Expand Up @@ -125,7 +125,6 @@
<argument>
require 'jar-dependencies'
require 'openssl'
require 'krypt'
puts Gem.loaded_specs.keys.sort.join(',')
</argument>
</arguments>
Expand Down
4 changes: 2 additions & 2 deletions maven/jruby-noasm/src/it/integrity/verify.bsh
Expand Up @@ -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 + "'" );
Expand Down

0 comments on commit 8271736

Please sign in to comment.