From 07e1b3dddec0b838e46ffd3d443d70dfc9f510b8 Mon Sep 17 00:00:00 2001 From: Lucas Meneghel Rodrigues Date: Tue, 19 Aug 2014 10:26:27 -0300 Subject: [PATCH] avocado.test: Small error message fix (TestNotFoundError) Signed-off-by: Lucas Meneghel Rodrigues --- avocado/test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/avocado/test.py b/avocado/test.py index 970398b2..e48c55c7 100644 --- a/avocado/test.py +++ b/avocado/test.py @@ -455,7 +455,7 @@ class MissingTest(Test): tag=tag, job=job) def action(self): - e_msg = ('Test %s could not be found in the test dir %s' + e_msg = ('Test %s could not be found in the test dir %s ' '(or test path does not exist)' % (self.name, data_dir.get_test_dir())) raise exceptions.TestNotFoundError(e_msg) -- GitLab