Skip to content

Commit d19683d

Browse files
committed
Fixed improperly cased 'GLOBAL_CONFIGURATION_PATH'
1 parent 93ebb07 commit d19683d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/cli/test_decrypt_password.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ def test_decrypt_password(capsys, tmp_path):
1414
global_config.crypto_key = crypto_key.decode("ascii")
1515
with open(tmp_path / "config.yaml", "w") as cfg:
1616
yaml.dump(global_config.dict(), cfg)
17-
os.environ["MURFEY_global_configURATION"] = str(tmp_path / "config.yaml")
17+
os.environ["MURFEY_GLOBAL_CONFIGURATION"] = str(tmp_path / "config.yaml")
1818
password = "abcd"
1919
f = Fernet(crypto_key)
2020
encrypted_password = f.encrypt(password.encode("ascii")).decode()

0 commit comments

Comments
 (0)