From 73608f8ca1c37afb0a4376a01a2d6885b9dfd1d3 Mon Sep 17 00:00:00 2001 From: Todd Eichel Date: Fri, 27 May 2016 15:09:59 -0700 Subject: [PATCH] Appease rubocop. --- spec/jekyll_seo_tag_spec.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/spec/jekyll_seo_tag_spec.rb b/spec/jekyll_seo_tag_spec.rb index c0b196f..63922aa 100644 --- a/spec/jekyll_seo_tag_spec.rb +++ b/spec/jekyll_seo_tag_spec.rb @@ -446,11 +446,11 @@ EOS end context 'with pagination' do - let(:context) { make_context({}, { 'paginator' => paginator }) } + let(:context) { make_context({}, 'paginator' => paginator) } it 'outputs pagination links' do - expect(output).to match(%r{}) - expect(output).to match(%r{}) + expect(output).to match(//) + expect(output).to match(//) end end end