Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions requirements/prod.txt
Original file line number Diff line number Diff line change
Expand Up @@ -238,9 +238,9 @@ bitarray == 2.8.1 \
--hash=sha256:f3128234bde3629ab301a501950587e847d30031a9cbf04d95f35cbf44469a9e \
--hash=sha256:f7d2ec2174d503cbb092f8353527842633c530b4e03b9922411640ac9c018a19 \
--hash=sha256:f9a66745682e175e143a180524a63e692acb2b8c86941073f6dd4ee906e69608
bleach==5.0.1 \
--hash=sha256:085f7f33c15bd408dd9b17a4ad77c577db66d76203e5984b1bd59baeee948b2a \
--hash=sha256:0d03255c47eb9bd2f26aa9bb7f2107732e7e8fe195ca2f64709fcf3b0a4a085c
bleach==6.0.0 \
--hash=sha256:1a1a85c1595e07d8db14c5f09f09e6433502c51c595970edc090551f0db99414 \
--hash=sha256:33c16e3353dbd13028ab4799a0f89a83f113405c766e9c122df8a06f5b85b3f4
celery==5.3.1 \
--hash=sha256:27f8f3f3b58de6e0ab4f174791383bbd7445aff0471a43e99cfd77727940753f \
--hash=sha256:f84d1c21a1520c116c2b7d26593926581191435a03aa74b77c941b93ca1c6210
Expand Down
3 changes: 2 additions & 1 deletion src/olympia/amo/tests/test_amo_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -270,8 +270,9 @@ def test_delete_file(self):
[
(
'<script>alert("BALL SO HARD")</script>',
'&lt;script&gt;alert("BALL SO HARD")&lt;/script&gt;',
'&lt;script&gt;alert(&#34;BALL SO HARD&#34;)&lt;/script&gt;',
),
('Foo"', 'Foo&#34;'),
('Bän...g (bang)', 'Bän...g (bang)'),
(u, u),
('-'.join([u, u]), '-'.join([u, u])),
Expand Down