From 605be8eb60fec43cef0c0f2fc02d5c4165efa3c3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oleg=20H=C3=B6fling?= Date: Thu, 23 May 2019 13:38:47 +0200 Subject: [PATCH] removed prints from tests MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Oleg Höfling --- tests/test_hook_registration.py | 1 - tests/test_keyring_password_hook.py | 1 - 2 files changed, 2 deletions(-) diff --git a/tests/test_hook_registration.py b/tests/test_hook_registration.py index b07b5d7..4f7ce32 100644 --- a/tests/test_hook_registration.py +++ b/tests/test_hook_registration.py @@ -24,7 +24,6 @@ def test_devpi_ext_plugin_registered(plugin_name): def test_hookimpl_is_tryfirst(plugin_name): pm = get_pluginmanager() impls = pm.hook.devpiclient_get_password.get_hookimpls() - print(impls) impl = next(i for i in impls if i.plugin_name == plugin_name) assert impl.tryfirst is True diff --git a/tests/test_keyring_password_hook.py b/tests/test_keyring_password_hook.py index 0684679..0349229 100644 --- a/tests/test_keyring_password_hook.py +++ b/tests/test_keyring_password_hook.py @@ -11,7 +11,6 @@ def no_keyring_installed(monkeypatch): def mocked_import(name, *args): if name == 'keyring': - print('xoxoxo') raise ImportError() return import_orig(name, *args)