Skip to content

Commit f9a9eb1

Browse files
fix: update keys in home config file to match changes in utils
1 parent 8264f17 commit f9a9eb1

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

tests/conftest.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,11 @@ def user_filesystem(tmp_path):
4949
f.write("good_data.xy \n")
5050
f.write(f"{str(input_dir.resolve() / 'good_data.txt')}\n")
5151

52-
home_config_data = {"username": "home_username", "email": "[email protected]"}
52+
home_config_data = {
53+
"owner_name": "home_username",
54+
"owner_email": "[email protected]",
55+
"owner_orcid": "home_orcid",
56+
}
5357
with open(home_dir / "diffpyconfig.json", "w") as f:
5458
json.dump(home_config_data, f)
5559

0 commit comments

Comments
 (0)