Skip to content

Commit d43ab64

Browse files
committed
Fixed improperly cased 'MURFEY_GLOBAL_CONFIGURATION'
1 parent 05b1057 commit d43ab64

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/cli/test_generate_password.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ def test_generate_password(capsys, tmp_path):
1313
global_config.crypto_key = crypto_key.decode("ascii")
1414
with open(tmp_path / "config.yaml", "w") as cfg:
1515
yaml.dump(global_config.dict(), cfg)
16-
os.environ["MURFEY_global_configURATION"] = str(tmp_path / "config.yaml")
16+
os.environ["MURFEY_GLOBAL_CONFIGURATION"] = str(tmp_path / "config.yaml")
1717
run()
1818
captured = capsys.readouterr()
1919
f = Fernet(crypto_key)

0 commit comments

Comments
 (0)