From b04f73960ef71d70ddceec8df924d3f5c1d63008 Mon Sep 17 00:00:00 2001 From: kyle Date: Wed, 18 Jan 2017 15:28:54 -0500 Subject: [PATCH] Match rubocop styling. --- spec/jekyll_seo_tag_spec.rb | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/spec/jekyll_seo_tag_spec.rb b/spec/jekyll_seo_tag_spec.rb index 9802db1..61c5b43 100644 --- a/spec/jekyll_seo_tag_spec.rb +++ b/spec/jekyll_seo_tag_spec.rb @@ -199,8 +199,8 @@ describe Jekyll::SeoTag do context "with image.url, image.height, and image.width" do let(:meta) do { - "image" => {"url" => "/img/banner.png","height" => 1,"width" => 2}, - "url" => "http://example.invalid" + "image" => { "url" => "/img/banner.png", "height" => 1, "width" => 2 }, + "url" => "http://example.invalid" } end let(:page) { make_post(meta) } @@ -215,8 +215,8 @@ describe Jekyll::SeoTag do context "with image.url only" do let(:meta) do { - "image" => {"url" => "/img/banner.png"}, - "url" => "http://example.invalid" + "image" => { "url" => "/img/banner.png" }, + "url" => "http://example.invalid" } end let(:page) { make_post(meta) } @@ -254,7 +254,7 @@ describe Jekyll::SeoTag do context "with seo type is BlogPosting" do let(:site) { make_site("url" => "http://example.invalid") } - let(:page) { make_post("seo" => {"type" => "BlogPosting"},"permalink" => "/foo/") } + let(:page) { make_post("seo" => { "type" => "BlogPosting" }, "permalink" => "/foo/") } it "outputs the mainEntityOfPage" do expect(json_data["mainEntityOfPage"]["@type"]).to eql("WebPage")