We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f6618ae commit 262a87dCopy full SHA for 262a87d
schema/src/test/test_aaa_normaluserfails.sql
@@ -68,10 +68,12 @@ AS
68
or p.grantee in (select granted_role from user_role_privs)
69
);
70
71
- ut.expect(l_cnt).to_equal(0).comment(
72
- 'Expected no SELECT on ' || c_owner || '.' || c_tables(i) ||
73
- ' for user=' || user || '. Found count=' || l_cnt
74
- );
+ if l_cnt <> 0 then
+ ut.fail(
+ 'Expected no SELECT on ' || c_owner || '.' || c_tables(i) ||
+ ' for user=' || user || '. Found count=' || l_cnt
75
+ );
76
+ end if;
77
end loop;
78
end;
79
END;
0 commit comments