Commit 9ba6f566 authored by nimrod's avatar nimrod
Browse files

- Correct test.

parent 2a90bb20
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -6,7 +6,8 @@ testinfra_hosts = AnsibleRunner('.molecule/ansible_inventory').get_hosts('all')
def test_php_fpm_service(Service, SystemInfo):
    if SystemInfo.type == 'openbsd':
        service = Service('php56_fpm')
    elif SystemInfo.type == 'debian':
    elif SystemInfo.type == 'linux' and SystemInfo.distribution in ['debian',
                                                                    'ubuntu']:
        service = Service('php5-fpm')
    assert service.is_running
    try: