Remove swear words from source code

This commit is contained in:
Daniel James 2013-09-23 16:16:51 +01:00
parent 9de8b6634c
commit 577bbf14b6
10 changed files with 22 additions and 26 deletions

View file

@ -38,7 +38,7 @@ class TestMMP(unittest.TestCase):
m1 = mmp.file_md5(p)
m2 = mmp.file_md5(p,10)
self.assertTrue( m1 != m2 )
self.assertRaises( ValueError, lambda : mmp.file_md5('/bull/shit/path') )
self.assertRaises( ValueError, lambda : mmp.file_md5('/file/path') )
self.assertTrue( m1 == mmp.file_md5(p) )
def test_sub_path(self):