Skip to content

Commit 9cc73ff

Browse files
committed
Fix test
1 parent 90264ba commit 9cc73ff

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

myuw/test/views/test_errors.py

+7-4
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,13 @@ def test_no_access(self):
4040
response = no_access()
4141
self.assertEqual(
4242
response.content,
43-
(b'<p>This is a test environment of MyUW, '
44-
b'its access is limited to specific people. To request access, '
45-
b'please contact the <a href="https://itconnect.uw.edu/'
46-
b'it-connect-home/question/">UW-IT Service Center</a>.</p>'))
43+
(
44+
b"<p>This is a test environment of MyUW, "
45+
b"its access is limited to specific people. To request access, "
46+
b'please contact the <a href="https://it.uw.edu/help/uw/'
47+
b'">UW-IT Service Center</a>.</p>'
48+
),
49+
)
4750
self.assertEqual(response.status_code, 403)
4851

4952
def test_not_instructor_error(self):

0 commit comments

Comments
 (0)