remove trailing commas
This commit is contained in:
parent
25b11a2e6b
commit
063582a986
1 changed files with 3 additions and 3 deletions
|
@ -12,7 +12,7 @@ describe 'postgresql::lib::java', :type => :class do
|
||||||
it { should contain_package('postgresql-jdbc').with(
|
it { should contain_package('postgresql-jdbc').with(
|
||||||
:name => 'libpostgresql-jdbc-java',
|
:name => 'libpostgresql-jdbc-java',
|
||||||
:ensure => 'present',
|
:ensure => 'present',
|
||||||
:tag => 'postgresql',
|
:tag => 'postgresql'
|
||||||
)}
|
)}
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -26,7 +26,7 @@ describe 'postgresql::lib::java', :type => :class do
|
||||||
it { should contain_package('postgresql-jdbc').with(
|
it { should contain_package('postgresql-jdbc').with(
|
||||||
:name => 'postgresql-jdbc',
|
:name => 'postgresql-jdbc',
|
||||||
:ensure => 'present',
|
:ensure => 'present',
|
||||||
:tag => 'postgresql',
|
:tag => 'postgresql'
|
||||||
)}
|
)}
|
||||||
describe 'when parameters are supplied' do
|
describe 'when parameters are supplied' do
|
||||||
let :params do
|
let :params do
|
||||||
|
@ -35,7 +35,7 @@ describe 'postgresql::lib::java', :type => :class do
|
||||||
it { should contain_package('postgresql-jdbc').with(
|
it { should contain_package('postgresql-jdbc').with(
|
||||||
:name => 'somepackage',
|
:name => 'somepackage',
|
||||||
:ensure => 'latest',
|
:ensure => 'latest',
|
||||||
:tag => 'postgresql',
|
:tag => 'postgresql'
|
||||||
)}
|
)}
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue