diff --git a/msal/__main__.py b/msal/__main__.py
index 5cb08206..24fe85e6 100644
--- a/msal/__main__.py
+++ b/msal/__main__.py
@@ -216,11 +216,7 @@ def _remove_tokens_for_client(app):
def _exit(app):
"""Exit"""
- bug_link = (
- "https://identitydivision.visualstudio.com/Engineering/_queries/query/79b3a352-a775-406f-87cd-a487c382a8ed/"
- if app._enable_broker else
- "https://github.com/AzureAD/microsoft-authentication-library-for-python/issues/new/choose"
- )
+ bug_link = "https://github.com/AzureAD/microsoft-authentication-library-for-python/issues/new/choose"
print("Bye. If you found a bug, please report it here: {}".format(bug_link))
sys.exit()
@@ -334,4 +330,3 @@ def _main():
if __name__ == "__main__":
_main()
-
diff --git a/tests/microsoft.mex.xml b/tests/microsoft.mex.xml
index e68a8bef..65eee449 100644
--- a/tests/microsoft.mex.xml
+++ b/tests/microsoft.mex.xml
@@ -648,9 +648,9 @@
-
-
-
+
+
+
@@ -835,80 +835,80 @@
-
+
- https://corp.sts.microsoft.com/adfs/services/trust/2005/windowstransport
+ https://example.com/adfs/services/trust/2005/windowstransport
- iamfed@redmond.corp.microsoft.com
+ iamfed@example.com
-
+
- https://corp.sts.microsoft.com/adfs/services/trust/2005/certificatemixed
+ https://example.com/adfs/services/trust/2005/certificatemixed
-
+
- https://corp.sts.microsoft.com/adfs/services/trust/2005/usernamemixed
+ https://example.com/adfs/services/trust/2005/usernamemixed
-
+
- https://corp.sts.microsoft.com/adfs/services/trust/2005/kerberosmixed
+ https://example.com/adfs/services/trust/2005/kerberosmixed
-
+
- https://corp.sts.microsoft.com/adfs/services/trust/2005/issuedtokenmixedasymmetricbasic256
+ https://example.com/adfs/services/trust/2005/issuedtokenmixedasymmetricbasic256
-
+
- https://corp.sts.microsoft.com/adfs/services/trust/2005/issuedtokenmixedsymmetricbasic256
+ https://example.com/adfs/services/trust/2005/issuedtokenmixedsymmetricbasic256
-
+
- https://corp.sts.microsoft.com/adfs/services/trust/13/kerberosmixed
+ https://example.com/adfs/services/trust/13/kerberosmixed
-
+
- https://corp.sts.microsoft.com/adfs/services/trust/13/certificatemixed
+ https://example.com/adfs/services/trust/13/certificatemixed
-
+
- https://corp.sts.microsoft.com/adfs/services/trust/13/usernamemixed
+ https://example.com/adfs/services/trust/13/usernamemixed
-
+
- https://corp.sts.microsoft.com/adfs/services/trust/13/issuedtokenmixedasymmetricbasic256
+ https://example.com/adfs/services/trust/13/issuedtokenmixedasymmetricbasic256
-
+
- https://corp.sts.microsoft.com/adfs/services/trust/13/issuedtokenmixedsymmetricbasic256
+ https://example.com/adfs/services/trust/13/issuedtokenmixedsymmetricbasic256
-
+
- https://corp.sts.microsoft.com/adfs/services/trust/13/windowstransport
+ https://example.com/adfs/services/trust/13/windowstransport
- iamfed@redmond.corp.microsoft.com
+ iamfed@example.com
diff --git a/tests/test_mex.py b/tests/test_mex.py
index fe330f71..3107832e 100644
--- a/tests/test_mex.py
+++ b/tests/test_mex.py
@@ -16,7 +16,7 @@ def _test_parser(self, sample, expected_endpoint):
def test_happy_path_1(self):
self._test_parser("microsoft.mex.xml",
- 'https://corp.sts.microsoft.com/adfs/services/trust/13/usernamemixed')
+ 'https://example.com/adfs/services/trust/13/usernamemixed')
def test_happy_path_2(self):
self._test_parser('arupela.mex.xml',
@@ -25,4 +25,3 @@ def test_happy_path_2(self):
def test_happy_path_3(self):
self._test_parser('archan.us.mex.xml',
'https://arvmserver2012.archan.us/adfs/services/trust/13/usernamemixed')
-