Skip to content
Snippets Groups Projects

#330: Restructure repository

Merged Moul requested to merge 330_repo_structure into main
1 file
+ 4
4
Compare changes
  • Side-by-side
  • Inline
+ 4
4
@@ -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}
)
Loading