Fix apache tests

We recently updated the apache module which added a requirement on the
$::operatingsystem fact. We were not always passing this in, so to fix
the error we need to provide this fact.

Change-Id: Ic803c9ec9feacaa774f705d978bb4d738961d605
This commit is contained in:
Alex Schultz 2016-12-22 08:09:28 -07:00
parent 07616c69c6
commit 3fde8078c4
1 changed files with 1 additions and 0 deletions

View File

@ -1129,6 +1129,7 @@ describe 'keystone' do
let :facts do
@default_facts.merge(global_facts.merge({
:osfamily => 'RedHat',
:operatingsystem => 'RedHat',
:operatingsystemrelease => '7.0'
}))
end