From ad81470d350d427b7c10e8c584e51af7c81e7c52 Mon Sep 17 00:00:00 2001 From: Charanpal Dhanjal Date: Tue, 2 Jun 2015 10:17:17 +0100 Subject: [PATCH] Put space after hash --- tests/fields/file_tests.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/fields/file_tests.py b/tests/fields/file_tests.py index 7db90059..4bd1b164 100644 --- a/tests/fields/file_tests.py +++ b/tests/fields/file_tests.py @@ -309,7 +309,7 @@ class FileTest(unittest.TestCase): testfile.the_file.put(text, content_type=content_type, filename="hello") testfile.save() - #Now check fs.files and fs.chunks + # Now check fs.files and fs.chunks db = TestFile._get_db() files = db.fs.files.find() @@ -317,7 +317,7 @@ class FileTest(unittest.TestCase): self.assertEquals(len(list(files)), 1) self.assertEquals(len(list(chunks)), 1) - #Deleting the docoument should delete the files + # Deleting the docoument should delete the files testfile.delete() files = db.fs.files.find() @@ -325,7 +325,7 @@ class FileTest(unittest.TestCase): self.assertEquals(len(list(files)), 0) self.assertEquals(len(list(chunks)), 0) - #Test case where we don't store a file in the first place + # Test case where we don't store a file in the first place testfile = TestFile() testfile.save() @@ -341,7 +341,7 @@ class FileTest(unittest.TestCase): self.assertEquals(len(list(files)), 0) self.assertEquals(len(list(chunks)), 0) - #Test case where we overwrite the file + # Test case where we overwrite the file testfile = TestFile() testfile.the_file.put(text, content_type=content_type, filename="hello") testfile.save()