You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@buildr.apache.org by do...@apache.org on 2013/10/26 06:22:21 UTC

svn commit: r1535917 - /buildr/trunk/spec/java/packaging_spec.rb

Author: donaldp
Date: Sat Oct 26 04:22:21 2013
New Revision: 1535917

URL: http://svn.apache.org/r1535917
Log:
Fix the test to reflect test_jar's correct classifier

Modified:
    buildr/trunk/spec/java/packaging_spec.rb

Modified: buildr/trunk/spec/java/packaging_spec.rb
URL: http://svn.apache.org/viewvc/buildr/trunk/spec/java/packaging_spec.rb?rev=1535917&r1=1535916&r2=1535917&view=diff
==============================================================================
--- buildr/trunk/spec/java/packaging_spec.rb (original)
+++ buildr/trunk/spec/java/packaging_spec.rb Sat Oct 26 04:22:21 2013
@@ -1248,7 +1248,7 @@ describe Packaging, 'test_jar' do
     define 'foo', :version=>'1.0' do
       package(:test_jar).type.should eql(:jar)
       package(:test_jar).classifier.should eql('tests')
-      package(:test_jar).name.should match(/foo-1.0-test-jar.jar$/)
+      package(:test_jar).name.should match(/foo-1.0-tests.jar$/)
     end
   end