@@ -121,7 +121,7 @@ create or replace package body ut is
121121 a_client_character_set varchar2,
122122 a_random_test_order integer,
123123 a_random_test_order_seed positive,
124- a_tags ut_varchar2_rows := null
124+ a_tags varchar2 := null
125125 ) is
126126 pragma autonomous_transaction;
127127 begin
@@ -157,7 +157,7 @@ create or replace package body ut is
157157 a_client_character_set varchar2,
158158 a_random_test_order integer,
159159 a_random_test_order_seed positive,
160- a_tags ut_varchar2_rows := null
160+ a_tags varchar2 := null
161161 ) is
162162 pragma autonomous_transaction;
163163 begin
@@ -234,7 +234,7 @@ create or replace package body ut is
234234 a_client_character_set,
235235 a_random_test_order,
236236 a_random_test_order_seed,
237- ut_varchar2_rows( a_tags)
237+ a_tags
238238 );
239239 if l_reporter is of (ut_output_reporter_base) then
240240 l_results := treat(l_reporter as ut_output_reporter_base).get_lines_cursor();
@@ -273,7 +273,7 @@ create or replace package body ut is
273273 a_client_character_set,
274274 a_random_test_order,
275275 a_random_test_order_seed,
276- ut_varchar2_rows( a_tags)
276+ a_tags
277277 );
278278 if l_reporter is of (ut_output_reporter_base) then
279279 l_results := treat(l_reporter as ut_output_reporter_base).get_lines_cursor();
@@ -313,7 +313,7 @@ create or replace package body ut is
313313 a_client_character_set,
314314 a_random_test_order,
315315 a_random_test_order_seed,
316- ut_varchar2_rows( a_tags)
316+ a_tags
317317 );
318318 if l_reporter is of (ut_output_reporter_base) then
319319 l_results := treat(l_reporter as ut_output_reporter_base).get_lines_cursor();
@@ -353,7 +353,7 @@ create or replace package body ut is
353353 a_client_character_set,
354354 a_random_test_order,
355355 a_random_test_order_seed,
356- ut_varchar2_rows( a_tags)
356+ a_tags
357357 );
358358 if l_reporter is of (ut_output_reporter_base) then
359359 l_results := treat(l_reporter as ut_output_reporter_base).get_lines_cursor();
@@ -393,7 +393,7 @@ create or replace package body ut is
393393 a_client_character_set,
394394 a_random_test_order,
395395 a_random_test_order_seed,
396- ut_varchar2_rows( a_tags)
396+ a_tags
397397 );
398398 if l_reporter is of (ut_output_reporter_base) then
399399 l_results := treat(l_reporter as ut_output_reporter_base).get_lines_cursor();
@@ -433,7 +433,7 @@ create or replace package body ut is
433433 a_client_character_set,
434434 a_random_test_order,
435435 a_random_test_order_seed,
436- ut_varchar2_rows( a_tags)
436+ a_tags
437437 );
438438 if l_reporter is of (ut_output_reporter_base) then
439439 l_results := treat(l_reporter as ut_output_reporter_base).get_lines_cursor();
@@ -457,7 +457,7 @@ create or replace package body ut is
457457 a_force_manual_rollback boolean := false,
458458 a_random_test_order boolean := false,
459459 a_random_test_order_seed positive := null,
460- a_tags ut_varchar2_rows := null
460+ a_tags varchar2 := null
461461 ) is
462462 l_reporter ut_reporter_base := a_reporter;
463463 begin
@@ -514,7 +514,7 @@ create or replace package body ut is
514514 a_force_manual_rollback boolean := false,
515515 a_random_test_order boolean := false,
516516 a_random_test_order_seed positive := null,
517- a_tags ut_varchar2_rows := null
517+ a_tags varchar2 := null
518518 ) is
519519 l_reporter ut_reporter_base := a_reporter;
520520 begin
@@ -563,7 +563,7 @@ create or replace package body ut is
563563 a_force_manual_rollback,
564564 a_random_test_order,
565565 a_random_test_order_seed,
566- ut_varchar2_rows( a_tags)
566+ a_tags
567567 );
568568 end;
569569
@@ -595,7 +595,7 @@ create or replace package body ut is
595595 a_force_manual_rollback,
596596 a_random_test_order,
597597 a_random_test_order_seed,
598- ut_varchar2_rows( a_tags)
598+ a_tags
599599 );
600600 end;
601601
@@ -628,7 +628,7 @@ create or replace package body ut is
628628 a_force_manual_rollback,
629629 a_random_test_order,
630630 a_random_test_order_seed,
631- ut_varchar2_rows( a_tags)
631+ a_tags
632632 );
633633 end;
634634
@@ -661,7 +661,7 @@ create or replace package body ut is
661661 a_force_manual_rollback,
662662 a_random_test_order,
663663 a_random_test_order_seed,
664- ut_varchar2_rows( a_tags)
664+ a_tags
665665 );
666666 end;
667667
0 commit comments