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

Skip to content

Commit 22f0ec7

Browse files
committed
Fixed failing tests - wrong context name
1 parent eb5dad6 commit 22f0ec7

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

source/create_synonyms.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ set termout off
3636
spool params.sql.tmp
3737
select
3838
case
39-
when upper('&&ut3_user') = 'PUBLIC' then q'[define action_type='public'
39+
when upper('&&ut3_user') = 'PUBLIC' then q'[define action_type='or replace public'
4040
]'||q'[define ut3_user=''
4141
]'||q'[define grantee='PUBLIC']'
4242
else q'[define action_type='or replace'

test/ut3_user/api/test_ut_run.pkb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1120,7 +1120,7 @@ Failures:%
11201120
begin
11211121
select attribute||'='||value
11221122
bulk collect into l_results
1123-
from session_context where namespace = 'UT3_INFO'
1123+
from session_context where namespace = 'UT3_DEVELOP_INFO'
11241124
order by attribute;
11251125
for i in 1 .. l_results.count loop
11261126
dbms_output.put_line( upper(a_procedure_name) ||':'|| l_results(i) );
@@ -1393,7 +1393,7 @@ Failures:%
13931393
begin
13941394
open l_actual for
13951395
select attribute||'='||value
1396-
from session_context where namespace = 'UT3_INFO';
1396+
from session_context where namespace = 'UT3_DEVELOP_INFO';
13971397

13981398
ut.expect(l_actual).to_be_empty();
13991399
end;

0 commit comments

Comments
 (0)