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

Skip to content

Commit d53a85c

Browse files
authored
Merge pull request #180 from Pazus/typo_fix
Fixed typo
2 parents 50d8ef9 + 395453c commit d53a85c

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

source/core/types/ut_event_listener.tpb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ create or replace type body ut_event_listener is
4141
elsif a_event_name = ut_utils.gc_after_all then
4242
self.reporters(i).before_calling_after_all(treat(a_item as ut_logical_suite));
4343
else
44-
raise_application_error(ut_utils.gc_invalid_rep_event_name,'Inavlid reporting event name - '|| nvl(a_event_name,'NULL'));
44+
raise_application_error(ut_utils.gc_invalid_rep_event_name,'Invalid reporting event name - '|| nvl(a_event_name,'NULL'));
4545
end if;
4646
elsif a_event_timing = 'after' then
4747
if a_event_name = ut_utils.gc_run then
@@ -65,10 +65,10 @@ create or replace type body ut_event_listener is
6565
elsif a_event_name = ut_utils.gc_after_all then
6666
self.reporters(i).after_calling_after_all(treat(a_item as ut_logical_suite));
6767
else
68-
raise_application_error(ut_utils.gc_invalid_rep_event_name,'Inavlid reporting event name - '|| nvl(a_event_name,'NULL'));
68+
raise_application_error(ut_utils.gc_invalid_rep_event_name,'Invalid reporting event name - '|| nvl(a_event_name,'NULL'));
6969
end if;
7070
else
71-
raise_application_error(ut_utils.gc_invalid_rep_event_time,'Inavlid reporting event time - '|| nvl(a_event_timing,'NULL'));
71+
raise_application_error(ut_utils.gc_invalid_rep_event_time,'Invalid reporting event time - '|| nvl(a_event_timing,'NULL'));
7272
end if;
7373
end loop;
7474

0 commit comments

Comments
 (0)