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

Skip to content

Commit 0025dd9

Browse files
committed
Fix typo
1 parent 68ab56f commit 0025dd9

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

test/ut3_user/expectations/test_expectations_cursor.pkb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2561,13 +2561,13 @@ Check the query and data for errors.';
25612561
open l_expected for
25622562
select c_price as usd_price_amt, c_user as update_id from dual;
25632563

2564-
ut3.ut.expect(l_actual).to_be_like(l_expected);
2564+
ut3.ut.expect(l_actual).to_equal(l_expected);
25652565
--Line that error relates to in expected messag
25662566

25672567
ut.fail('Expected exception on cursor fetch');
25682568
exception
25692569
when others then
2570-
ut.expect(sqlerrm).to_equal(l_exp_message);
2570+
ut.expect(sqlerrm).to_be_like(l_exp_message);
25712571
end;
25722572

25732573
procedure xml_error_expected is
@@ -2586,12 +2586,12 @@ Check the query and data for errors.';
25862586
open l_actual for
25872587
select 1 as test from dual;
25882588

2589-
ut3.ut.expect(l_actual).to_be_like(l_expected);
2589+
ut3.ut.expect(l_actual).to_equal(l_expected);
25902590

25912591
ut.fail('Expected exception on cursor fetch');
25922592
exception
25932593
when others then
2594-
ut.expect(sqlerrm).to_equal(l_exp_message);
2594+
ut.expect(sqlerrm).to_be_like(l_exp_message);
25952595
end;
25962596

25972597
end;

0 commit comments

Comments
 (0)