summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Reiter <reiter.christoph@gmail.com>2022-03-27 10:37:36 +0200
committerChristoph Reiter <reiter.christoph@gmail.com>2022-03-27 10:38:07 +0200
commitad2e90f62d930433e7a28f08edd99ef85579393f (patch)
tree6a8cb54fa3c4c4039c99491ec21f2a48a23037f2
parentdad6c1aacd0fc9517e4bf7213ae90832f60912c5 (diff)
downloadgobject-introspection-ad2e90f62d930433e7a28f08edd99ef85579393f.tar.gz
Fix some broken links to the PyPy bug tracker
They moved away from bitbucket some time ago.
-rw-r--r--tests/test_gi.py2
-rw-r--r--tests/test_overrides_gio.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_gi.py b/tests/test_gi.py
index 5979d5d0..12789207 100644
--- a/tests/test_gi.py
+++ b/tests/test_gi.py
@@ -637,7 +637,7 @@ class TestGType(unittest.TestCase):
errors = (AttributeError,)
if platform.python_implementation() == "PyPy":
- # https://bitbucket.org/pypy/pypy/issues/2788
+ # https://foss.heptapod.net/pypy/pypy/-/issues/2788
errors = (AttributeError, TypeError)
self.assertRaises(errors, check_readonly, GObject.TYPE_NONE)
diff --git a/tests/test_overrides_gio.py b/tests/test_overrides_gio.py
index de0e2352..db09859b 100644
--- a/tests/test_overrides_gio.py
+++ b/tests/test_overrides_gio.py
@@ -256,7 +256,7 @@ def test_list_store_setitem_slice():
def do_set(count, key, new_count):
if count == 0 and key.step is not None \
and platform.python_implementation() == "PyPy":
- # https://bitbucket.org/pypy/pypy/issues/2804
+ # https://foss.heptapod.net/pypy/pypy/-/issues/2804
return
store = Gio.ListStore.new(Item)
source = [Item() for i in range(count)]