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

Skip to content

Commit 30ba62e

Browse files
committed
Fixed a bug after refactoring.
1 parent fa7e8a6 commit 30ba62e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

source/core/ut_utils.pks

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,12 @@ create or replace package ut_utils authid definer is
3636
gc_after_all constant varchar2(12) := 'after_all';
3737

3838
/* Constants: Test Results */
39-
tr_disabled constant number(1) := 0; -- test/suite was disabled
39+
tr_disabled constant number(1) := 0; -- test/suite was disabled
4040
tr_success constant number(1) := 1; -- test passed
4141
tr_failure constant number(1) := 2; -- one or more asserts failed
4242
tr_error constant number(1) := 3; -- exception was raised
4343

44-
tr_disabled_char constant varchar2(6) := 'Disabled'; -- test/suite was disabled
44+
tr_disabled_char constant varchar2(8) := 'Disabled'; -- test/suite was disabled
4545
tr_success_char constant varchar2(7) := 'Success'; -- test passed
4646
tr_failure_char constant varchar2(7) := 'Failure'; -- one or more asserts failed
4747
tr_error_char constant varchar2(5) := 'Error'; -- exception was raised

0 commit comments

Comments
 (0)