Skip to content

Commit b7a66da

Browse files
committed
Fixed bad test.
Added `dbms_output.enable` in `core` test package
1 parent 0a60686 commit b7a66da

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

test/core.pkb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ create or replace package body core is
2121

2222
procedure global_setup is
2323
begin
24+
dbms_output.enable(null);
2425
ut3.ut_coverage.set_develop_mode(true);
2526
--improve performance of test execution by disabling all compiler optimizations
2627
execute_autonomous('ALTER SESSION SET PLSQL_OPTIMIZE_LEVEL=0');

test/core/expectations/test_expectation_anydata.pkb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -989,7 +989,7 @@ Rows: [ 60 differences, showing first 20 ]
989989
g_test_actual := anydata.convertCollection(t_tab_varchar(' '));
990990

991991
--Act
992-
ut3.ut.expect( g_test_actual ).to_equal( g_test_expected ).unordered();
992+
ut3.ut.expect( g_test_actual ).not_to_equal( g_test_expected ).unordered();
993993
ut.expect(expectations.failed_expectations_data()).to_be_empty();
994994

995995
end;

0 commit comments

Comments
 (0)