summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulian Berman <Julian@GrayVines.com>2022-08-06 12:03:32 +0300
committerJulian Berman <Julian@GrayVines.com>2022-08-06 12:03:32 +0300
commit62536e79e05bf04b273bc5939742122f0ef39c61 (patch)
tree0b8199a89e97242e0c7ecd15c239dc96103e47c3
parent6f85db09c2381c93947ed923a277138932622450 (diff)
downloadjsonschema-62536e79e05bf04b273bc5939742122f0ef39c61.tar.gz
Yet another urljoin issue with the internal helper.
-rw-r--r--jsonschema/tests/_helpers.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/jsonschema/tests/_helpers.py b/jsonschema/tests/_helpers.py
index 124168a..754ff83 100644
--- a/jsonschema/tests/_helpers.py
+++ b/jsonschema/tests/_helpers.py
@@ -3,7 +3,7 @@ from urllib.parse import urljoin
def issues_url(organization, repository):
return urljoin(
- "https://github.com/", f"{organization}/{repository}/issues",
+ "https://github.com/", f"{organization}/{repository}/issues/",
)