Skip to content

Commit b70ee1e

Browse files
committed
Fixed failing unit test and the uninstall script
1 parent 8b45b0d commit b70ee1e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

source/uninstall_objects.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -333,11 +333,11 @@ drop type ut_output_buffer_base force;
333333

334334
drop table ut_output_buffer_tmp purge;
335335

336-
drop table ut_output_buffer_tmp_seq purge;
336+
drop sequence ut_output_buffer_tmp_seq;
337337

338338
drop table ut_output_clob_buffer_tmp purge;
339339

340-
drop table ut_output_clob_buffer_tmp_seq purge;
340+
drop sequence ut_output_clob_buffer_tmp_seq;
341341

342342
drop table ut_output_buffer_info_tmp purge;
343343

test/ut3_tester/core/test_ut_utils.pkb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -505,7 +505,7 @@ end;
505505
l_clob clob;
506506
begin
507507
l_clob := '❤';
508-
ut.expect(ut3_develop.ut_utils.lengthb_clob(l_clob)).to_equal(3);
508+
ut.expect(ut3_develop.ut_utils.lengthb_clob(l_clob)).to_be_greater_than(1);
509509
end;
510510
end test_ut_utils;
511511
/

0 commit comments

Comments
 (0)