File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -52,8 +52,6 @@ create or replace package demo_expectations is
5252
5353end;
5454/
55-
56-
5755create 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
You can’t perform that action at this time.
0 commit comments