From 092db3b1456dfdaf5a913f5b5821efa84a54bd43 Mon Sep 17 00:00:00 2001
From: Moul <moul@moul.re>
Date: Fri, 14 Oct 2022 18:37:18 +0200
Subject: [PATCH] test_auth: patch from imported module

---
 tests/test_auth.py | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/tests/test_auth.py b/tests/test_auth.py
index b3154123..7e0b3788 100644
--- a/tests/test_auth.py
+++ b/tests/test_auth.py
@@ -36,10 +36,10 @@ from tests.patched.auth import (
     ],
 )
 def test_auth_method(seed, file, wif, auth_method_called, monkeypatch):
-    monkeypatch.setattr("silkaj.auth.auth_by_seed", patched_auth_by_seed)
-    monkeypatch.setattr("silkaj.auth.auth_by_wif", patched_auth_by_wif)
-    monkeypatch.setattr("silkaj.auth.auth_by_auth_file", patched_auth_by_auth_file)
-    monkeypatch.setattr("silkaj.auth.auth_by_scrypt", patched_auth_by_scrypt)
+    monkeypatch.setattr(auth, "auth_by_seed", patched_auth_by_seed)
+    monkeypatch.setattr(auth, "auth_by_wif", patched_auth_by_wif)
+    monkeypatch.setattr(auth, "auth_by_auth_file", patched_auth_by_auth_file)
+    monkeypatch.setattr(auth, "auth_by_scrypt", patched_auth_by_scrypt)
     ctx = click.Context(
         click.Command(""), obj={"AUTH_SEED": seed, "AUTH_FILE": file, "AUTH_WIF": wif}
     )
-- 
GitLab