pychecker fixes

This commit is contained in:
Thomas Vander Stichele
2009-05-22 20:44:10 +00:00
parent b137f6a3fd
commit 41c92fcda4
11 changed files with 3 additions and 26 deletions

View File

@@ -2,7 +2,6 @@
# vi:si:et:sw=4:sts=4:ts=4
import os
import stat
import tempfile
import unittest

View File

@@ -61,7 +61,6 @@ class TrackSeparateTestCase(unittest.TestCase):
self.assertEquals(h(checksumtask.checksums[3]), '0x7271db39')
def testLength(self):
tracks = self.image.cue.table.tracks
self.assertEquals(self.image.table.getTrackLength(1), 10)
self.assertEquals(self.image.table.getTrackLength(2), 10)
self.assertEquals(self.image.table.getTrackLength(3), 10)

View File

@@ -1,7 +1,6 @@
# -*- Mode: Python; test-case-name: morituri.test.test_image_table -*-
# vi:si:et:sw=4:sts=4:ts=4
import os
import unittest
from morituri.image import table

View File

@@ -54,11 +54,6 @@ class CureTestCase(unittest.TestCase):
self._assertAbsolute(2, 1, 28324)
self._assertPath(1, 1, "data.wav")
def dump():
for t in self.toc.table.tracks:
print t
print t.indexes.values()
self.toc.table.absolutize()
self.toc.table.clearFiles()