Skip to content

Commit 7aa1e69

Browse files
authored
Fix style offenses (#414)
Merge pull request 414
1 parent 1f3d80f commit 7aa1e69

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

spec/jekyll-feed_spec.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ def to_s
246246
let(:overrides) { { "feed" => { "icon" => site_icon } } }
247247

248248
it "uses site.icon for the icon" do
249-
expect(feed.icon.content).to eql("http://example.org/" + site_icon)
249+
expect(feed.icon.content).to eql("http://example.org/#{site_icon}")
250250
end
251251
end
252252

@@ -255,7 +255,7 @@ def to_s
255255
let(:overrides) { { "feed" => { "logo" => site_logo } } }
256256

257257
it "uses site.logo for the logo" do
258-
expect(feed.logo.content).to eql("http://example.org/" + site_logo)
258+
expect(feed.logo.content).to eql("http://example.org/#{site_logo}")
259259
end
260260
end
261261
end

0 commit comments

Comments
 (0)