diff options
author | Oleg Fayans <ofayans@redhat.com> | 2016-09-21 11:32:57 +0200 |
---|---|---|
committer | David Kupka <dkupka@redhat.com> | 2016-09-22 15:20:42 +0200 |
commit | dbf0d141c5a4d1ccd1b681ac49cb57e47234aaa4 (patch) | |
tree | 2f77c2d06c44697b814b410f5b1ef8ee00c09e61 /ipatests | |
parent | bb4205b582038669888544786a5611b18e52bf42 (diff) | |
download | freeipa-dbf0d141c5a4d1ccd1b681ac49cb57e47234aaa4.tar.gz freeipa-dbf0d141c5a4d1ccd1b681ac49cb57e47234aaa4.tar.xz freeipa-dbf0d141c5a4d1ccd1b681ac49cb57e47234aaa4.zip |
tests: Replaced hardcoded certutil with imported from paths
Reviewed-By: David Kupka <dkupka@redhat.com>
Diffstat (limited to 'ipatests')
-rw-r--r-- | ipatests/test_integration/test_caless.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ipatests/test_integration/test_caless.py b/ipatests/test_integration/test_caless.py index 04d186a4a..88eec0ad5 100644 --- a/ipatests/test_integration/test_caless.py +++ b/ipatests/test_integration/test_caless.py @@ -285,7 +285,7 @@ class CALessBase(IntegrationTest): @classmethod def get_pem(cls, nickname): result = ipautil.run( - ['certutil', '-L', '-d', 'nssdb', '-n', nickname, '-a'], + [paths.CERTUTIL, '-L', '-d', 'nssdb', '-n', nickname, '-a'], cwd=cls.cert_dir, capture_output=True) return result.output |