Improve the display of supported formats

- Show the extension instead of the mimetype
- Sort the results
This commit is contained in:
jvoisin 2019-03-06 21:20:39 +01:00
parent 769bafac0a
commit 457d171cd4
2 changed files with 6 additions and 3 deletions

View file

@ -21,8 +21,8 @@ class FlaskrTestCase(unittest.TestCase):
def test_check_mimetypes(self):
rv = self.app.get('/')
self.assertIn(b'application/zip', rv.data)
self.assertIn(b'audio/x-flac', rv.data)
self.assertIn(b'.torrent', rv.data)
self.assertIn(b'.ods', rv.data)
def test_get_download_dangerous_file(self):
rv = self.app.get('/download/1337/\..\filename')