fix a failing test
This commit is contained in:
@@ -31,7 +31,8 @@ def _diff(old, new, desc):
|
|||||||
|
|
||||||
def diffStrings(orig, new, desc='input'):
|
def diffStrings(orig, new, desc='input'):
|
||||||
|
|
||||||
assert type(orig) == type(new)
|
assert type(orig) == type(new), 'type %s and %s are different' % (
|
||||||
|
type(orig), type(new))
|
||||||
|
|
||||||
def _tolines(s):
|
def _tolines(s):
|
||||||
return [line + '\n' for line in s.split('\n')]
|
return [line + '\n' for line in s.split('\n')]
|
||||||
|
|||||||
@@ -85,7 +85,8 @@ class CureTestCase(common.TestCase):
|
|||||||
def testConvertCue(self):
|
def testConvertCue(self):
|
||||||
self.toc.table.absolutize()
|
self.toc.table.absolutize()
|
||||||
cue = self.toc.table.cue()
|
cue = self.toc.table.cue()
|
||||||
ref = open(os.path.join(os.path.dirname(__file__), 'cure.cue')).read()
|
ref = open(os.path.join(os.path.dirname(__file__), 'cure.cue')).read(
|
||||||
|
).decode('utf-8')
|
||||||
common.diffStrings(cue, ref)
|
common.diffStrings(cue, ref)
|
||||||
|
|
||||||
# we verify it because it has failed in readdisc in the past
|
# we verify it because it has failed in readdisc in the past
|
||||||
|
|||||||
Reference in New Issue
Block a user