From 93207254d0f3d81f2d0661062590a5b417c7a346 Mon Sep 17 00:00:00 2001 From: Jean Privat Date: Wed, 26 Nov 2014 21:49:06 -0500 Subject: [PATCH] nitdoc: increase the verbosity level for the numerous skip messages Signed-off-by: Jean Privat --- src/testing/testing_suite.nit | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/testing/testing_suite.nit b/src/testing/testing_suite.nit index 1a3006d..0f1b117 100644 --- a/src/testing/testing_suite.nit +++ b/src/testing/testing_suite.nit @@ -383,13 +383,13 @@ redef class ModelBuilder test_file = "{include_dir}/{test_file}" end if not test_file.file_exists then - toolcontext.info("Skip test for {mmodule}, no file {test_file} found", 1) + toolcontext.info("Skip test for {mmodule}, no file {test_file} found", 2) return ts end var tester = new NitUnitTester(self) var res = tester.test_module_unit(test_file) if res == null then - toolcontext.info("Skip test for {mmodule}, no test suite found", 1) + toolcontext.info("Skip test for {mmodule}, no test suite found", 2) return ts end return res.to_xml -- 1.7.9.5