Skip to content

Commit 10e3b27

Browse files
committed
Replace http:....roundup-tracker.org with https.
1 parent 5fd7cce commit 10e3b27

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

test/test_cgi.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1162,7 +1162,7 @@ def wh(s):
11621162
# Should return explanation because content type is text/plain
11631163
# and not text/xml
11641164
cl.handle_xmlrpc()
1165-
self.assertEqual(out[0], b"This is the endpoint of Roundup <a href='http://www.roundup-tracker.org/docs/xmlrpc.html'>XML-RPC interface</a>.")
1165+
self.assertEqual(out[0], b"This is the endpoint of Roundup <a href='https://www.roundup-tracker.org/docs/xmlrpc.html'>XML-RPC interface</a>.")
11661166
del(out[0])
11671167

11681168
# Should return admin user indicating auth works and

test/test_security.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ def check(db,userid,itemid, **other):
183183
return (itemid == '1')
184184

185185
# also create a check as a callable of a class
186-
# http://issues.roundup-tracker.org/issue2550952
186+
# https://issues.roundup-tracker.org/issue2550952
187187
class CheckClass(object):
188188
def __call__(self, db,userid,itemid, **other):
189189
prop = other['property']

0 commit comments

Comments
 (0)