summaryrefslogtreecommitdiff
path: root/kitchen-tests/test/integration/webapp/serverspec/localhost/default_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'kitchen-tests/test/integration/webapp/serverspec/localhost/default_spec.rb')
-rw-r--r--kitchen-tests/test/integration/webapp/serverspec/localhost/default_spec.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/kitchen-tests/test/integration/webapp/serverspec/localhost/default_spec.rb b/kitchen-tests/test/integration/webapp/serverspec/localhost/default_spec.rb
index 992e4f7683..2a8ab8a214 100644
--- a/kitchen-tests/test/integration/webapp/serverspec/localhost/default_spec.rb
+++ b/kitchen-tests/test/integration/webapp/serverspec/localhost/default_spec.rb
@@ -110,16 +110,16 @@ describe "webapp::default", :end_to_end => true do
end
end
- describe "http://localhost/index.html" do
+ describe "http://127.0.0.1/index.html" do
include_examples "a webpage" do
- let(:uri) { URI.parse("http://localhost/index.html") }
+ let(:uri) { URI.parse("http://127.0.0.1/index.html") }
let(:content) { "Hello, World!" }
end
end
- describe "http://localhost/index.php" do
+ describe "http://127.0.0.1/index.php" do
include_examples "a webpage" do
- let(:uri) { URI.parse("http://localhost/index.php") }
+ let(:uri) { URI.parse("http://127.0.0.1/index.php") }
let(:content) { "Hello, World!" }
end
end