Skip to content
Snippets Groups Projects
Commit 804a98df authored by mads's avatar mads
Browse files

fix test problem

parent 886976f6
No related branches found
No related tags found
No related merge requests found
......@@ -20,7 +20,7 @@ class TestCmpTestCases(CompareTestCases):
self.compare_sel(self.ref_path + 'test1.sel', self.test_path + 'test1.sel')
def test_compare_sel_different_number_of_lines(self):
self.assertRaisesRegex(AssertionError, "16 != 15 : \nNumber of lines differs in", self.compare_sel, self.ref_path + 'test2.sel', self.test_path + 'test2.sel')
self.assertRaises(AssertionError, self.compare_sel, self.ref_path + 'test2.sel', self.test_path + 'test2.sel')
def test_compare_sel_different_header(self):
self.compare_sel(self.ref_path + 'test3.sel', self.test_path + 'test3.sel')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment