From a1e75edb8afbe1744acb5251fe00d75a00c9fc1a Mon Sep 17 00:00:00 2001 From: Abhijeet Prasad Bodas Date: Sun, 14 Mar 2021 17:17:42 +0530 Subject: [PATCH] linkifiers: Remove outdated comment in tests. After 34e39248fcfbb985da3409f1ec9818981769d136, we do support generic GitHub URLs. This test and the comment above it were added in 043baa2af862db25b0289c76986d86663f58b4ee. --- zerver/tests/test_realm_filters.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/zerver/tests/test_realm_filters.py b/zerver/tests/test_realm_filters.py index 17a20e65b2..1c4459fbff 100644 --- a/zerver/tests/test_realm_filters.py +++ b/zerver/tests/test_realm_filters.py @@ -88,9 +88,6 @@ class RealmFilterTest(ZulipTestCase): self.assert_json_success(result) self.assertIsNotNone(re.match(data["pattern"], "!123")) - # This is something we'd like to support, but don't currently; - # this test is a reminder of something we should allow in the - # future. data["pattern"] = r"(?P[a-zA-Z0-9_-]+)/(?P[a-zA-Z0-9_-]+)#(?P[0-9]+)" data["url_format_string"] = "https://github.com/%(org)s/%(repo)s/issue/%(id)s" result = self.client_post("/json/realm/filters", info=data)