diff --git a/bec_widgets/widgets/containers/main_window/addons/web_links.py b/bec_widgets/widgets/containers/main_window/addons/web_links.py index 619e6d1e..84095f22 100644 --- a/bec_widgets/widgets/containers/main_window/addons/web_links.py +++ b/bec_widgets/widgets/containers/main_window/addons/web_links.py @@ -12,4 +12,4 @@ class BECWebLinksMixin: @staticmethod def open_bec_bug_report(): - webbrowser.open("https://gitlab.psi.ch/groups/bec/-/issues/") + webbrowser.open("https://github.com/bec-project/bec_widgets/issues") diff --git a/tests/unit_tests/test_main_widnow.py b/tests/unit_tests/test_main_widnow.py index 19ad4c6c..ee0c1309 100644 --- a/tests/unit_tests/test_main_widnow.py +++ b/tests/unit_tests/test_main_widnow.py @@ -191,7 +191,7 @@ def test_bec_weblinks(monkeypatch): assert opened_urls == [ "https://beamline-experiment-control.readthedocs.io/en/latest/", "https://bec.readthedocs.io/projects/bec-widgets/en/latest/", - "https://gitlab.psi.ch/groups/bec/-/issues/", + "https://github.com/bec-project/bec_widgets/issues", ]