Skip to content

Commit 605be8e

Browse files
committed
removed prints from tests
Signed-off-by: Oleg Höfling <oleg.hoefling@gmail.com>
1 parent 8663727 commit 605be8e

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

tests/test_hook_registration.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ def test_devpi_ext_plugin_registered(plugin_name):
2424
def test_hookimpl_is_tryfirst(plugin_name):
2525
pm = get_pluginmanager()
2626
impls = pm.hook.devpiclient_get_password.get_hookimpls()
27-
print(impls)
2827
impl = next(i for i in impls if i.plugin_name == plugin_name)
2928
assert impl.tryfirst is True
3029

tests/test_keyring_password_hook.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ def no_keyring_installed(monkeypatch):
1111

1212
def mocked_import(name, *args):
1313
if name == 'keyring':
14-
print('xoxoxo')
1514
raise ImportError()
1615
return import_orig(name, *args)
1716

0 commit comments

Comments
 (0)