Commit 137e7f33 authored by Priscila Manhaes's avatar Priscila Manhaes

Refactor cause _getFileType works only with readed data

parent 94130863
...@@ -323,7 +323,7 @@ class TestServer(TestCase): ...@@ -323,7 +323,7 @@ class TestServer(TestCase):
try: try:
png_path = join(self.tmp_url, "img0.png") png_path = join(self.tmp_url, "img0.png")
zipfile.extractall(self.tmp_url) zipfile.extractall(self.tmp_url)
content_type = self._getFileType(png_path) content_type = self._getFileType(encodestring(open(png_path).read()))
self.assertEquals(content_type, 'image/png') self.assertEquals(content_type, 'image/png')
m = magic.Magic() m = magic.Magic()
self.assertTrue("8-bit/color RGB" in m.from_file(png_path)) self.assertTrue("8-bit/color RGB" in m.from_file(png_path))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment