We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8b45b0d commit b70ee1eCopy full SHA for b70ee1e
2 files changed
source/uninstall_objects.sql
@@ -333,11 +333,11 @@ drop type ut_output_buffer_base force;
333
334
drop table ut_output_buffer_tmp purge;
335
336
-drop table ut_output_buffer_tmp_seq purge;
+drop sequence ut_output_buffer_tmp_seq;
337
338
drop table ut_output_clob_buffer_tmp purge;
339
340
-drop table ut_output_clob_buffer_tmp_seq purge;
+drop sequence ut_output_clob_buffer_tmp_seq;
341
342
drop table ut_output_buffer_info_tmp purge;
343
test/ut3_tester/core/test_ut_utils.pkb
@@ -505,7 +505,7 @@ end;
505
l_clob clob;
506
begin
507
l_clob := '❤';
508
- ut.expect(ut3_develop.ut_utils.lengthb_clob(l_clob)).to_equal(3);
+ ut.expect(ut3_develop.ut_utils.lengthb_clob(l_clob)).to_be_greater_than(1);
509
end;
510
end test_ut_utils;
511
/
0 commit comments