comparison tests/test-manifest.py @ 27637:b502138f5faa

cleanup: remove superfluous space after space after equals (python)
author timeless <timeless@mozdev.org>
date Thu, 31 Dec 2015 08:16:59 +0000
parents 328739ea70c3
children b9ed5a88710c
comparison
equal deleted inserted replaced
27636:21b363bd87dc 27637:b502138f5faa
185 self.assertEqual('a\0' + HASH_1 + want + '\n' + A_SHORT_MANIFEST, 185 self.assertEqual('a\0' + HASH_1 + want + '\n' + A_SHORT_MANIFEST,
186 m.text()) 186 m.text())
187 187
188 def testCopy(self): 188 def testCopy(self):
189 m = self.parsemanifest(A_SHORT_MANIFEST) 189 m = self.parsemanifest(A_SHORT_MANIFEST)
190 m['a'] = BIN_HASH_1 190 m['a'] = BIN_HASH_1
191 m2 = m.copy() 191 m2 = m.copy()
192 del m 192 del m
193 del m2 # make sure we don't double free() anything 193 del m2 # make sure we don't double free() anything
194 194
195 def testCompaction(self): 195 def testCompaction(self):