Skip to content

Commit

Permalink
Fix style offenses (#414)
Browse files Browse the repository at this point in the history
Merge pull request 414
  • Loading branch information
ashmaroli authored Sep 25, 2024
1 parent 1f3d80f commit 7aa1e69
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spec/jekyll-feed_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ def to_s
let(:overrides) { { "feed" => { "icon" => site_icon } } }

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

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

it "uses site.logo for the logo" do
expect(feed.logo.content).to eql("http://example.org/" + site_logo)
expect(feed.logo.content).to eql("http://example.org/#{site_logo}")
end
end
end
Expand Down

0 comments on commit 7aa1e69

Please sign in to comment.