Skip to content

Commit

Permalink
removed prints from tests
Browse files Browse the repository at this point in the history
Signed-off-by: Oleg Höfling <[email protected]>
  • Loading branch information
hoefling committed May 23, 2019
1 parent 8663727 commit 605be8e
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion tests/test_hook_registration.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
1 change: 0 additions & 1 deletion tests/test_keyring_password_hook.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit 605be8e

Please sign in to comment.