Skip to content

Commit

Permalink
replace " with ' to make the computer happy
Browse files Browse the repository at this point in the history
  • Loading branch information
tilsammans committed Jun 25, 2016
1 parent c31dd02 commit 803025e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions spec/models/pageflow/theming_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -73,27 +73,27 @@ module Pageflow
end

it "updates the revision author with the theming's default author" do
theming.update default_author: "Amir Greithanner"
theming.update default_author: 'Amir Greithanner'

theming.copy_defaults_to(revision)

expect(revision.author).to eq("Amir Greithanner")
expect(revision.author).to eq('Amir Greithanner')
end

it "updates the revision publisher with the theming's default publisher" do
theming.update default_publisher: "Spöttel KG"
theming.update default_publisher: 'Spöttel KG'

theming.copy_defaults_to(revision)

expect(revision.publisher).to eq("Spöttel KG")
expect(revision.publisher).to eq('Spöttel KG')
end

it "updates the revision keywords with the theming's default keywords" do
theming.update default_keywords: "ratione, aut, blanditiis"
theming.update default_keywords: 'ratione, aut, blanditiis'

theming.copy_defaults_to(revision)

expect(revision.keywords).to eq("ratione, aut, blanditiis")
expect(revision.keywords).to eq('ratione, aut, blanditiis')
end
end

Expand Down

0 comments on commit 803025e

Please sign in to comment.