Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Fixed failing unit test and the uninstall script
  • Loading branch information
jgebal committed May 28, 2023
commit b70ee1e742652da3c4a13231e1edcc26ecff5998
4 changes: 2 additions & 2 deletions source/uninstall_objects.sql
Original file line number Diff line number Diff line change
Expand Up @@ -333,11 +333,11 @@ drop type ut_output_buffer_base force;

drop table ut_output_buffer_tmp purge;

drop table ut_output_buffer_tmp_seq purge;
drop sequence ut_output_buffer_tmp_seq;

drop table ut_output_clob_buffer_tmp purge;

drop table ut_output_clob_buffer_tmp_seq purge;
drop sequence ut_output_clob_buffer_tmp_seq;

drop table ut_output_buffer_info_tmp purge;

Expand Down
2 changes: 1 addition & 1 deletion test/ut3_tester/core/test_ut_utils.pkb
Original file line number Diff line number Diff line change
Expand Up @@ -505,7 +505,7 @@ end;
l_clob clob;
begin
l_clob := '❤';
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);
end;
end test_ut_utils;
/