From 4f2ae293c59c1a3064fc02338ccdebd82ef9c4a5 Mon Sep 17 00:00:00 2001 From: Christian Berg Date: Wed, 10 Apr 2013 00:55:44 +0200 Subject: [PATCH] Ruby 1.8.7 doesn't like a comma after the last hash entry. --- spec/unit/classes/server/jetty_ini_spec.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/spec/unit/classes/server/jetty_ini_spec.rb b/spec/unit/classes/server/jetty_ini_spec.rb index 3046b20..4974e47 100644 --- a/spec/unit/classes/server/jetty_ini_spec.rb +++ b/spec/unit/classes/server/jetty_ini_spec.rb @@ -18,7 +18,7 @@ describe 'puppetdb::server::jetty_ini', :type => :class do 'path' => '/etc/puppetdb/conf.d/jetty.ini', 'section' => 'jetty', 'setting' => 'host', - 'value' => 'localhost', + 'value' => 'localhost' )} it { should contain_ini_setting('puppetdb_port'). with( @@ -26,7 +26,7 @@ describe 'puppetdb::server::jetty_ini', :type => :class do 'path' => '/etc/puppetdb/conf.d/jetty.ini', 'section' => 'jetty', 'setting' => 'port', - 'value' => 8080, + 'value' => 8080 )} it { should contain_ini_setting('puppetdb_sslhost'). with( @@ -34,7 +34,7 @@ describe 'puppetdb::server::jetty_ini', :type => :class do 'path' => '/etc/puppetdb/conf.d/jetty.ini', 'section' => 'jetty', 'setting' => 'ssl-host', - 'value' => 'test.domain.local', + 'value' => 'test.domain.local' )} it { should contain_ini_setting('puppetdb_sslport'). with( @@ -42,7 +42,7 @@ describe 'puppetdb::server::jetty_ini', :type => :class do 'path' => '/etc/puppetdb/conf.d/jetty.ini', 'section' => 'jetty', 'setting' => 'ssl-port', - 'value' => 8081, + 'value' => 8081 )} end end