From ac71da91c8bfe904cc38ecfda05bc5d66b3d8c1e Mon Sep 17 00:00:00 2001 From: Bryan Brancotte <bryan.brancotte@pasteur.fr> Date: Tue, 8 Feb 2022 15:34:15 +0100 Subject: [PATCH] response are not replaced anymore --- src/viralhostrange/viralhostrangedb/tests/test_commands.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/viralhostrange/viralhostrangedb/tests/test_commands.py b/src/viralhostrange/viralhostrangedb/tests/test_commands.py index e9b394ff..dc4e4fad 100644 --- a/src/viralhostrange/viralhostrangedb/tests/test_commands.py +++ b/src/viralhostrange/viralhostrangedb/tests/test_commands.py @@ -30,8 +30,7 @@ class NoErrorImportationObserver(business_process.MessageImportationObserver): def notify_response_error(self, virus, host, response_str): raise ResponseException( "[ImportErr2] " + - "Could not import response \"%(response)s\" for virus \"%(virus)s\", host\"%(host)s\", " - "replacing it with \"%(rpl)s\"" % dict( + "Could not import response \"%(response)s\" for virus \"%(virus)s\", host\"%(host)s\"" % dict( response=str(response_str), virus=str(virus), host=str(host), -- GitLab