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

Skip to content

Commit fd9b61f

Browse files
committed
fixed the bug
don't know how to make a nice test
1 parent 463f64b commit fd9b61f

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

source/core/types/ut_test_suite.tpb

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,7 @@ create or replace type body ut_test_suite is
5050

5151
if self.ignore_flag = 1 then
5252
self.result := ut_utils.tr_ignore;
53-
elsif self.is_valid() then
54-
53+
else
5554
if self.rollback_type = ut_utils.gc_rollback_auto then
5655
l_savepoint := ut_utils.gen_savepoint_name;
5756
execute immediate 'savepoint ' || l_savepoint;
@@ -84,8 +83,6 @@ create or replace type body ut_test_suite is
8483
if self.rollback_type = ut_utils.gc_rollback_auto then
8584
execute immediate 'rollback to ' || l_savepoint;
8685
end if;
87-
else
88-
self.result := ut_utils.tr_error;
8986
end if;
9087

9188
self.end_time := current_timestamp;

0 commit comments

Comments
 (0)