summaryrefslogtreecommitdiff
path: root/tests/unittests/test_handler_ca_certs.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unittests/test_handler_ca_certs.py')
-rw-r--r--tests/unittests/test_handler_ca_certs.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/unittests/test_handler_ca_certs.py b/tests/unittests/test_handler_ca_certs.py
index d6513b5b..37bd7a08 100644
--- a/tests/unittests/test_handler_ca_certs.py
+++ b/tests/unittests/test_handler_ca_certs.py
@@ -169,10 +169,15 @@ class TestRemoveDefaultCaCerts(MockerTestCase):
mock_delete_dir_contents = self.mocker.replace(delete_dir_contents,
passthrough=False)
mock_write = self.mocker.replace(write_file, passthrough=False)
+ mock_check_call = self.mocker.replace("subprocess.check_call",
+ passthrough=False)
mock_delete_dir_contents("/usr/share/ca-certificates/")
mock_delete_dir_contents("/etc/ssl/certs/")
mock_write("/etc/ca-certificates.conf", "", mode=0644)
+ mock_check_call([
+ "echo 'ca-certificates ca-certificates/trust_new_crts select no'"
+ " | debconf-set-selections"], shell=True)
self.mocker.replay()
remove_default_ca_certs()