Skip to content

Commit

Permalink
Make sonarcloud happy with https in test
Browse files Browse the repository at this point in the history
Signed-off-by: jamshale <[email protected]>
  • Loading branch information
jamshale committed Nov 21, 2024
1 parent 8a3ad2e commit 8e704bb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions acapy_agent/anoncreds/tests/test_revocation.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
"accum_key": {"z": "1 0BB...386"},
},
tails_hash="58NNWYnVxVFzAfUztwGSNBL4551XNq6nXk56pCiKJxxt",
tails_location="http://tails-server.com",
tails_location="https://tails-server.com",
),
issuer_id="CsQY9MGeD3CQP4EyuVFo5m",
type="CL_ACCUM",
Expand Down Expand Up @@ -840,7 +840,7 @@ async def test_upload_tails_file(self):
None,
mock.MagicMock(
upload_tails_file=mock.CoroutineMock(
return_value=(True, "http://tails-server.com")
return_value=(True, "https://tails-server.com")
)
),
]
Expand All @@ -853,7 +853,7 @@ async def test_upload_tails_file(self):
None,
mock.MagicMock(
upload_tails_file=mock.CoroutineMock(
return_value=(None, "http://tails-server.com"),
return_value=(None, "https://tails-server.com"),
)
),
]
Expand Down

0 comments on commit 8e704bb

Please sign in to comment.