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

Skip to content

Commit af6ccb5

Browse files
committed
fixed example
1 parent b57a54a commit af6ccb5

1 file changed

Lines changed: 4 additions & 6 deletions

File tree

examples/demo_expectations.pck

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,6 @@ create or replace package demo_expectations is
5252

5353
end;
5454
/
55-
56-
5755
create or replace package body demo_expectations is
5856

5957
procedure demo_nulls_on_expectations is
@@ -515,10 +513,10 @@ create or replace package body demo_expectations is
515513
ut.expect( 'stephen_' ).to_be_like('_tephen\_', '\'); --escape wildcards with '\'
516514
ut.expect( 'Hi, I am Stephen' ).to_( be_like('%Stephen') );
517515
ut.expect( 'stephen_' ).to_( be_like('_tephen^_', '^')); --escape wildcards with '^'
518-
ut.expect( l_clob ).to_be_like('a%a_TE%');
519-
ut.expect( l_clob ).to_be_like('a%a_TE%\_', '\'); --escape wildcards with '\'
520-
ut.expect( l_clob ).to_( be_like('a%a_TE%') );
521-
ut.expect( l_clob ).to_( be_like('a%a_TE%\_', '\') ); --escape wildcards with '\'
516+
ut.expect( l_clob ).to_be_like('a%S_EP%');
517+
ut.expect( l_clob ).to_be_like('a%S_EP%\_', '\'); --escape wildcards with '\'
518+
ut.expect( l_clob ).to_( be_like('a%S_EP%') );
519+
ut.expect( l_clob ).to_( be_like('a%S_EP%\_', '\') ); --escape wildcards with '\'
522520
end;
523521

524522
procedure demo_not_to_failure is

0 commit comments

Comments
 (0)