finally fix whitespace

This commit is contained in:
Thomas Vander Stichele
2009-09-26 15:07:12 +00:00
parent 6d52b61d90
commit b3888a7017
2 changed files with 4 additions and 4 deletions

View File

@@ -477,7 +477,7 @@ class Program(log.Loggable):
if trackResult.accurip:
status = 'rip accurate '
c = "(not found) "
c = "(not found) "
ar = ", DB [notfound]"
if trackResult.ARDBMaxConfidence:
c = "(max confidence %3d)" % trackResult.ARDBMaxConfidence

View File

@@ -56,13 +56,13 @@ class TrackImageVerifyTestCase(unittest.TestCase):
res = prog.getAccurateRipResults()
self.assertEquals(res[1 - 1],
"Track 1: rip NOT accurate (not found) "
"Track 1: rip NOT accurate (not found) "
"[620b0797], DB [notfound]")
self.assertEquals(res[2 - 1],
"Track 2: rip accurate (max confidence 2) "
"Track 2: rip accurate (max confidence 2) "
"[af8c44c5], DB [af8c44c5]")
self.assertEquals(res[10 - 1],
"Track 10: rip NOT accurate (max confidence 2) "
"Track 10: rip NOT accurate (max confidence 2) "
"[16457a5a], DB [eb6e55b4]")
class HTOATestCase(unittest.TestCase):