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

Skip to content
Prev Previous commit
Next Next commit
Clear the error msg
  • Loading branch information
Pazus committed Dec 7, 2016
commit 40554c931162246e2d6d04e97e5cb2f44fdde651
6 changes: 5 additions & 1 deletion source/core/ut_suite_manager.pkb
Original file line number Diff line number Diff line change
Expand Up @@ -465,7 +465,11 @@ create or replace package body ut_suite_manager is
l_suite_path := regexp_substr(l_path, ':(.+)', subexpression => 1);
l_root_suite_name := regexp_substr(l_suite_path, '^\w+');

l_suite := l_schema_suites(l_root_suite_name);
begin
l_suite := l_schema_suites(l_root_suite_name);
exception when no_data_found then
raise_application_error(-20203, 'Suite ' || l_root_suite_name || ' note found');
end;

skip_by_path(l_suite, regexp_substr(l_suite_path, '\.(.+)', subexpression => 1));

Expand Down