Changeset - 85822ccb7c32
[Not reviewed]
default
0 1 0
timeless@gmail.com - 10 years ago 2016-05-03 14:09:35
timeless@gmail.com
spelling: parameter
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
kallithea/tests/vcs/test_utils_filesize.py
Show inline comments
 
@@ -14,12 +14,12 @@ class TestFilesizeformat(unittest.TestCa
 
    def test_megabytes(self):
 
        self.assertEqual(filesizeformat(1024 * 1024 * 2.3), '2.3 MB')
 

	
 
    def test_gigabytes(self):
 
        self.assertEqual(filesizeformat(1024 * 1024 * 1024 * 12.92), '12.92 GB')
 

	
 
    def test_that_function_respects_sep_paramtere(self):
 
    def test_that_function_respects_sep_parameter(self):
 
        self.assertEqual(filesizeformat(1, ''), '1B')
 

	
 

	
 
if __name__ == '__main__':
 
    unittest.main()
0 comments (0 inline, 0 general)