Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit cda4ced

Browse files
committed
Fixed a defect in suite_manager, that every non UT_ package is expected to have suite_tag in it.
1 parent b647d4a commit cda4ced

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

source/ut_suite_manager.pkb

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,9 @@ create or replace package body ut_suite_manager is
188188
and t.object_name not like 'UT\_%' escape '\') loop
189189
config_package(rec.owner, rec.object_name, l_suite, l_suite_path);
190190

191-
l_all_suites(l_suite_path) := l_suite;
191+
if l_suite_path is not null
192+
l_all_suites(l_suite_path) := l_suite;
193+
end if;
192194

193195
end loop;
194196

0 commit comments

Comments
 (0)