Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit b70ee1e

Browse filesBrowse files
committed
Fixed failing unit test and the uninstall script
1 parent 8b45b0d commit b70ee1e
Copy full SHA for b70ee1e

File tree

2 files changed

+3
-3
lines changed
Filter options

2 files changed

+3
-3
lines changed

‎source/uninstall_objects.sql

Copy file name to clipboardExpand all lines: source/uninstall_objects.sql
+2-2
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

Copy file name to clipboardExpand all lines: test/ut3_tester/core/test_ut_utils.pkb
+1-1
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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.