# HG changeset patch # User osimons # Date 1251978099 0 # Node ID 9d19ae17a401b56d135b15e23e1868474200e83e # Parent 3c1c52f5e8ad16474e0f52ed81511076247fc2bc 0.6dev: Follow-up to [740] - fix incorrect tests. diff --git a/bitten/build/tests/pythontools.py b/bitten/build/tests/pythontools.py --- a/bitten/build/tests/pythontools.py +++ b/bitten/build/tests/pythontools.py @@ -307,7 +307,7 @@ child = xml.children[0] self.assertEqual('coverage', child.name) self.assertEqual('test.module', child.attr['name']) - self.assertEqual(os.path.join('test', 'module.py'), child.attr['file']) + self.assertEqual('test/module.py', child.attr['file']) self.assertEqual(75, child.attr['percentage']) self.assertEqual(4, child.attr['lines']) self.assertEqual('1 0 - 1 1', child.attr['line_hits']) @@ -332,7 +332,7 @@ child = xml.children[0] self.assertEqual('coverage', child.name) self.assertEqual('test.module', child.attr['name']) - self.assertEqual(os.path.join('test', 'module.py'), child.attr['file']) + self.assertEqual('test/module.py', child.attr['file']) self.assertEqual(0, child.attr['percentage']) self.assertEqual(5, child.attr['lines'])