Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(tests): update DRep metadata URL in test_drep.py #2866

Merged
merged 1 commit into from
Jan 2, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions cardano_node_tests/tests/tests_conway/test_drep.py
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ def test_drep_id_is_blake2b_224_of_drep_vkey(
(
{
"drep_metadata_file": DATA_DIR / "drep_metadata_url.json",
"drep_metadata_url": "https://tinyurl.com/w7vd3ek6",
"drep_metadata_url": "https://tinyurl.com/drep-url",
"expected_hash": "18b4b10150eab04ba66c8f9cb497ff05c6c31b9c9825388481c1790ce76b6b90",
},
{
Expand Down Expand Up @@ -519,7 +519,7 @@ def test_register_wrong_metadata(
drep_metadata_file = DATA_DIR / "governance_action_anchor.json"

# Register DRep
drep_metadata_url = "https://tinyurl.com/w7vd3ek6"
drep_metadata_url = "https://tinyurl.com/drep-url"
drep_metadata_hash = cluster.g_conway_governance.drep.get_metadata_hash(
drep_metadata_file=drep_metadata_file
)
Expand Down
Loading