File tree Expand file tree Collapse file tree
source/expectations/data_values
test/ut3_user/expectations Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -598,9 +598,9 @@ create or replace package body ut_compound_data_helper is
598598
599599 function create_err_cursor_msg(a_error_stack varchar2) return varchar2 is
600600 begin
601- return 'SQL exception thrown when fetching data from cursor: '||
602- ut_utils.remove_error_from_stack(sqlerrm,ut_utils.gc_xml_processing)||chr(10)||
603- ut_expectation_processor.who_called_expectation(a_error_stack)||
601+ return 'SQL exception thrown when fetching data from cursor:'||
602+ trim( ut_utils.remove_error_from_stack(sqlerrm,ut_utils.gc_xml_processing) )||chr(10)||
603+ trim( ut_expectation_processor.who_called_expectation(a_error_stack) )||
604604 'Check the query and data for errors.';
605605 end;
606606
Original file line number Diff line number Diff line change @@ -2528,9 +2528,9 @@ Diff:%
25282528 l_expected sys_refcursor;
25292529 l_exp_message varchar2(32000);
25302530 begin
2531- l_exp_message :='ORA-20218: SQL exception thrown when fetching data from cursor:
2531+ l_exp_message :='ORA-20218: SQL exception thrown when fetching data from cursor:
25322532ORA-01722: invalid number
2533- at "UT3$USER#.TEST_EXPECTATIONS_CURSOR.XML_ERROR_ACTUAL", line 2542 ut3.ut.expect(l_actual).to_equal(l_expected);
2533+ at "UT3$USER#.TEST_EXPECTATIONS_CURSOR.XML_ERROR_ACTUAL", line 2542 ut3.ut.expect(l_actual).to_equal(l_expected);
25342534Check the query and data for errors.';
25352535
25362536 open l_actual for
@@ -2554,7 +2554,7 @@ Check the query and data for errors.';
25542554 l_exp_message varchar2(32000);
25552555 begin
25562556
2557- l_exp_message :='ORA-20218: SQL exception thrown when fetching data from cursor:
2557+ l_exp_message :='ORA-20218: SQL exception thrown when fetching data from cursor:
25582558ORA-01476: divisor is equal to zero
25592559at "UT3$USER#.TEST_EXPECTATIONS_CURSOR.XML_ERROR_EXPECTED", line 2567 ut3.ut.expect(l_actual).to_equal(l_expected);
25602560Check the query and data for errors.';
You can’t perform that action at this time.
0 commit comments