From: Jean Privat Date: Fri, 18 Jul 2014 00:58:50 +0000 (-0400) Subject: nitunit: remove a deprecated TODO X-Git-Tag: v0.6.7~47^2 X-Git-Url: http://nitlanguage.org nitunit: remove a deprecated TODO Signed-off-by: Jean Privat --- diff --git a/src/nitunit.nit b/src/nitunit.nit index 56ffeff..627e223 100644 --- a/src/nitunit.nit +++ b/src/nitunit.nit @@ -203,12 +203,12 @@ redef class ModelBuilder var nmodule = mmodule2nmodule[mmodule] assert nmodule != null - # what module to import in the unit test. - # try to detect the main module of the project - # TODO do things correctly once the importation of arbitraty nested module is legal + # usualy, only the original module must be imported in the unit test. var o = mmodule var g = o.mgroup if g != null and g.mproject.name == "standard" then + # except for a unit test in a module of standard + # in this case, the whole standard must be imported o = get_mmodule_by_name(nmodule, g, g.mproject.name).as(not null) end