Skip to content

Commit

Permalink
typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
RajeshPaul38 committed Aug 18, 2021
1 parent 26f02da commit 24dec17
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
describe "http GET to Port #{property['supermarket']['nginx']['non_ssl_port']}" do
subject { http("http://localhost:#{property['supermarket']['nginx']['non_ssl_port']}") }
it 'should not include server version number in response headers' do
expect(subject.headers.server).to.be_nil
expect(subject.headers.server).to be_nil
end
end

Expand All @@ -97,7 +97,7 @@

describe http("https://#{property['supermarket']['fqdn']}:#{property['supermarket']['nginx']['ssl_port']}", ssl_verify: false) do
it 'should not include server version number in response headers' do
expect(subject.headers.server).to.be_nil
expect(subject.headers.server).to be_nil
end

its('headers.keys') { should include('strict-transport-security') }
Expand Down

0 comments on commit 24dec17

Please sign in to comment.