We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c98b6c8 commit da7c22fCopy full SHA for da7c22f
1 file changed
ietf/api/tests.py
@@ -3,6 +3,7 @@
3
4
5
import json
6
+import html
7
import os
8
import shutil
9
import sys
@@ -229,7 +230,7 @@ def test_api_upload_bluesheet(self):
229
230
text = file.read()
231
for p in people:
232
self.assertIn(p['name'], text)
- self.assertIn(p['affiliation'], text)
233
+ self.assertIn(html.escape(p['affiliation']), text)
234
235
def test_person_export(self):
236
person = PersonFactory()
0 commit comments