Skip to content

Commit 81123bb

Browse files
committed
corrected examples to eliminate calls to deprecated procedures:
`run_schema_suites` `run_schema_suites_static` `run_cur_schema_suites` `run_cur_schema_suites_static`
1 parent b80458f commit 81123bb

4 files changed

Lines changed: 5 additions & 4 deletions

File tree

examples/RunAllExamples.sql

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
PROMPT Run all examples
12
Clear Screen
23
set echo off
34
set feedback off

examples/RunExampleTestAnnotationBasedForCurrentSchema.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ set echo off
1010
@@ut_custom_reporter.tps
1111
@@ut_custom_reporter.tpb
1212

13-
begin
14-
ut_suite_manager.run_cur_schema_suites_static(ut_custom_reporter(a_tab_size => 2));
13+
begin
14+
ut.run(user, ut_custom_reporter(a_tab_size => 2));
1515
end;
1616
/
1717

examples/RunExpectations.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ set echo off
1313
@@ut_custom_reporter.tpb
1414

1515
begin
16-
ut_suite_manager.run_cur_schema_suites_static(ut_documentation_reporter(), a_force_parse_again => true);
16+
ut.run(user, ut_documentation_reporter());
1717
end;
1818
/
1919

examples/RunWithDocumentationReporter.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ end;
7272
/
7373

7474
begin
75-
ut_suite_manager.run_cur_schema_suites_static(ut_documentation_reporter(), a_force_parse_again => true);
75+
ut.run(user, ut_documentation_reporter());
7676
end;
7777
/
7878

0 commit comments

Comments
 (0)