You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@buildr.apache.org by bo...@apache.org on 2010/03/27 05:44:24 UTC

svn commit: r928144 - /buildr/trunk/spec/packaging/artifact_spec.rb

Author: boisvert
Date: Sat Mar 27 04:44:24 2010
New Revision: 928144

URL: http://svn.apache.org/viewvc?rev=928144&view=rev
Log:
Remove debug printout

Modified:
    buildr/trunk/spec/packaging/artifact_spec.rb

Modified: buildr/trunk/spec/packaging/artifact_spec.rb
URL: http://svn.apache.org/viewvc/buildr/trunk/spec/packaging/artifact_spec.rb?rev=928144&r1=928143&r2=928144&view=diff
==============================================================================
--- buildr/trunk/spec/packaging/artifact_spec.rb (original)
+++ buildr/trunk/spec/packaging/artifact_spec.rb Sat Mar 27 04:44:24 2010
@@ -256,7 +256,7 @@ describe Repositories, 'remote' do
   it 'should deal well with repositories URL that have the last slash' do
     repositories.remote = 'http://example.com/base/'
     uri = nil
-    URI.should_receive(:download).twice.and_return { |_uri, args| p args ; uri = _uri }
+    URI.should_receive(:download).twice.and_return { |_uri, args| uri = _uri }
     artifact('group:id:jar:1.0').invoke
     uri.to_s.should eql('http://example.com/base/group/id/1.0/id-1.0.pom')
   end