We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 90264ba commit 9cc73ffCopy full SHA for 9cc73ff
myuw/test/views/test_errors.py
@@ -40,10 +40,13 @@ def test_no_access(self):
40
response = no_access()
41
self.assertEqual(
42
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>'))
+ (
+ b"<p>This is a test environment of MyUW, "
+ b"its access is limited to specific people. To request access, "
+ b'please contact the <a href="https://it.uw.edu/help/uw/'
47
+ b'">UW-IT Service Center</a>.</p>'
48
+ ),
49
+ )
50
self.assertEqual(response.status_code, 403)
51
52
def test_not_instructor_error(self):
0 commit comments