Skip to content

Commit

Permalink
Fix typos in spec names (resposne -> response)
Browse files Browse the repository at this point in the history
  • Loading branch information
h-lame committed Jul 26, 2016
1 parent cc1efe7 commit 0646306
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion spec/be_valid_asset/be_valid_css_spec.rb
Expand Up @@ -57,7 +57,7 @@
BeValidAsset::Configuration.display_invalid_content = false
end

it "should fail unless resposne is HTTP OK" do
it "should fail unless response is HTTP OK" do
css = get_file('valid.css')

r = Net::HTTPServiceUnavailable.new('1.1', 503, 'Service Unavailable')
Expand Down
2 changes: 1 addition & 1 deletion spec/be_valid_asset/be_valid_feed_spec.rb
Expand Up @@ -63,7 +63,7 @@
BeValidAsset::Configuration.display_invalid_content = false
end

it "should fail unless resposne is HTTP OK" do
it "should fail unless response is HTTP OK" do
feed = get_file('valid_feed.xml')

r = Net::HTTPServiceUnavailable.new('1.1', 503, 'Service Unavailable')
Expand Down
2 changes: 1 addition & 1 deletion spec/be_valid_asset/be_valid_markup_spec.rb
Expand Up @@ -148,7 +148,7 @@
}.to raise_error(SpecFailed)
end

it "should fail unless resposne is HTTP OK" do
it "should fail unless response is HTTP OK" do
html = get_file('valid.html')

r = Net::HTTPServiceUnavailable.new('1.1', 503, 'Service Unavailable')
Expand Down

0 comments on commit 0646306

Please sign in to comment.