We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f3d80f commit 7aa1e69Copy full SHA for 7aa1e69
spec/jekyll-feed_spec.rb
@@ -246,7 +246,7 @@ def to_s
246
let(:overrides) { { "feed" => { "icon" => site_icon } } }
247
248
it "uses site.icon for the icon" do
249
- expect(feed.icon.content).to eql("http://example.org/" + site_icon)
+ expect(feed.icon.content).to eql("http://example.org/#{site_icon}")
250
end
251
252
@@ -255,7 +255,7 @@ def to_s
255
let(:overrides) { { "feed" => { "logo" => site_logo } } }
256
257
it "uses site.logo for the logo" do
258
- expect(feed.logo.content).to eql("http://example.org/" + site_logo)
+ expect(feed.logo.content).to eql("http://example.org/#{site_logo}")
259
260
261
0 commit comments