DEV: Remove accidentally committed `puts` statements

This commit is contained in:
David Taylor 2020-06-23 12:41:47 +01:00
parent 368af327fa
commit c5078e5dc1
No known key found for this signature in database
GPG Key ID: 46904C18B1D3F434
1 changed files with 0 additions and 2 deletions

View File

@ -379,13 +379,11 @@ describe Jobs::PullHotlinkedImages do
it "returns false for plugin assets" do
src = UrlHelper.cook_url("/plugins/discourse-amazing-plugin/myasset.png")
puts "src is #{src}"
expect(subject.should_download_image?(src)).to eq(false)
end
it "returns false for local non-uploaded files" do
src = UrlHelper.cook_url("/mycustomroute.png")
puts "src is #{src}"
expect(subject.should_download_image?(src)).to eq(false)
end