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

Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix typo
  • Loading branch information
lwasylow committed Apr 8, 2019
commit 0025dd9327c060a63e733c6d719ec88f5b48f4af
8 changes: 4 additions & 4 deletions test/ut3_user/expectations/test_expectations_cursor.pkb
Original file line number Diff line number Diff line change
Expand Up @@ -2561,13 +2561,13 @@ Check the query and data for errors.';
open l_expected for
select c_price as usd_price_amt, c_user as update_id from dual;

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

ut.fail('Expected exception on cursor fetch');
exception
when others then
ut.expect(sqlerrm).to_equal(l_exp_message);
ut.expect(sqlerrm).to_be_like(l_exp_message);
end;

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

ut3.ut.expect(l_actual).to_be_like(l_expected);
ut3.ut.expect(l_actual).to_equal(l_expected);

ut.fail('Expected exception on cursor fetch');
exception
when others then
ut.expect(sqlerrm).to_equal(l_exp_message);
ut.expect(sqlerrm).to_be_like(l_exp_message);
end;

end;
Expand Down