From c07a085e119911124b07c15b02f04e70bcb664ba Mon Sep 17 00:00:00 2001 From: Parth Modi Date: Wed, 24 May 2017 22:35:32 +0530 Subject: [PATCH] Stray puts removed from test of canonical url --- spec/jekyll_seo_tag/drop_spec.rb | 1 - 1 file changed, 1 deletion(-) diff --git a/spec/jekyll_seo_tag/drop_spec.rb b/spec/jekyll_seo_tag/drop_spec.rb index 3327477..a6c2a1c 100644 --- a/spec/jekyll_seo_tag/drop_spec.rb +++ b/spec/jekyll_seo_tag/drop_spec.rb @@ -630,7 +630,6 @@ RSpec.describe Jekyll::SeoTag::Drop do let(:page) { make_page({ "title" => "page title", "canonical_url" => "https://github.com/jekyll/jekyll-seo-tag/" }) } let(:canonical_url) { "https://github.com/jekyll/jekyll-seo-tag/" } it "uses specified canonical url" do - puts subject.canonical_url expect(subject.canonical_url).to eq(canonical_url) end end