From 80ea5a72ca25d919874548349c93d8eaf8349e04 Mon Sep 17 00:00:00 2001 From: Hunter Haugen Date: Fri, 14 Feb 2014 16:12:05 -0800 Subject: [PATCH] Port 8080 is a bad choice and bumps into puppetdb --- spec/acceptance/apt_spec.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/spec/acceptance/apt_spec.rb b/spec/acceptance/apt_spec.rb index 5b7379f..35a0d3e 100644 --- a/spec/acceptance/apt_spec.rb +++ b/spec/acceptance/apt_spec.rb @@ -68,7 +68,7 @@ describe 'apt class' do pp = <<-EOS class { 'apt': proxy_host => 'localhost', - proxy_port => '8080', + proxy_port => '7042', } EOS @@ -77,7 +77,7 @@ describe 'apt class' do describe file('/etc/apt/apt.conf.d/proxy') do it { should be_file } - it { should contain 'Acquire::http::Proxy "http://localhost:8080\";' } + it { should contain 'Acquire::http::Proxy "http://localhost:7042\";' } end end @@ -110,7 +110,7 @@ describe 'apt class' do pp = <<-EOS class { 'apt': proxy_host => 'localhost', - proxy_port => '8080', + proxy_port => '7042', } EOS @@ -119,7 +119,7 @@ describe 'apt class' do describe file('/etc/apt/apt.conf.d/proxy') do it { should be_file } - it { should contain 'Acquire::http::Proxy "http://localhost:8080\";' } + it { should contain 'Acquire::http::Proxy "http://localhost:7042\";' } end end -- 2.45.2