From 8f31e51d87d0d39490d5bd36c395013715d19245 Mon Sep 17 00:00:00 2001 From: Martijn Vermaat <martijn@vermaat.name> Date: Fri, 5 Oct 2012 13:54:06 +0000 Subject: [PATCH] Fix unit test for restriction site analysis git-svn-id: https://humgenprojects.lumc.nl/svn/mutalyzer/trunk@620 eb6bd6ab-9ccd-42b9-aceb-e2899b4a52f1 --- tests/test_website.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_website.py b/tests/test_website.py index 0ebd3660..31af66f2 100644 --- a/tests/test_website.py +++ b/tests/test_website.py @@ -569,10 +569,10 @@ class TestWSGI(): results = self._batch('NameChecker', file='\n'.join(variants), size=len(variants), - header='Input\tErrors | Messages') + header='Input\tErrors | Messages').strip().split('\n') assert 'Restriction Sites Created\tRestriction Sites Deleted' in results[0] assert 'CviQI,RsaI\tBccI' in results[1] - assert 'CviQI,RsaI;HinP1I,HhaI;SfcI\tBccI;;BpmI,MnlI,BsaXI (2),Hpy188III' in results[2] + assert 'CviQI,RsaI;HhaI,HinP1I;SfcI\tBccI;;BpmI,BsaXI (2),MnlI' in results[2] @slow def test_batch_syntaxchecker_toobig(self): -- GitLab