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 2014/07/31 07:12:27 UTC

[13/50] git commit: Fix the test to reflect test_jar's correct classifier

Fix the test to reflect test_jar's correct classifier

git-svn-id: https://svn.apache.org/repos/asf/buildr/trunk@1535917 13f79535-47bb-0310-9956-ffa450edef68


Project: http://git-wip-us.apache.org/repos/asf/buildr/repo
Commit: http://git-wip-us.apache.org/repos/asf/buildr/commit/a90fca08
Tree: http://git-wip-us.apache.org/repos/asf/buildr/tree/a90fca08
Diff: http://git-wip-us.apache.org/repos/asf/buildr/diff/a90fca08

Branch: refs/heads/master
Commit: a90fca0893eb78b5c397859997a3e87a22cffb25
Parents: 0faefa7
Author: Peter Donald <do...@apache.org>
Authored: Sat Oct 26 04:22:21 2013 +0000
Committer: Peter Donald <do...@apache.org>
Committed: Sat Oct 26 04:22:21 2013 +0000

----------------------------------------------------------------------
 spec/java/packaging_spec.rb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/buildr/blob/a90fca08/spec/java/packaging_spec.rb
----------------------------------------------------------------------
diff --git a/spec/java/packaging_spec.rb b/spec/java/packaging_spec.rb
index 5eb6498..0b0c093 100644
--- a/spec/java/packaging_spec.rb
+++ b/spec/java/packaging_spec.rb
@@ -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