Skip to content

Commit 3f9ae63

Browse files
committed
Fix to coverage html reported.to allow overwrite default test schema
1 parent 5fb1687 commit 3f9ae63

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/core/types/ut_run.tpb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ create or replace type body ut_run as
2929
self.coverage_options := a_coverage_options;
3030
self.test_file_mappings := coalesce(a_test_file_mappings, ut_file_mappings());
3131
if self.coverage_options is not null then
32-
l_run_schemes := get_run_schemes();
32+
l_run_schemes := coalesce(coverage_options.schema_names, l_run_schemes);
3333
coverage_options.schema_names := l_run_schemes;
3434
if coverage_options.exclude_objects is not null then
3535
coverage_options.exclude_objects :=

0 commit comments

Comments
 (0)