Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit ec0bd42

Browse files
committed
Fixed coverage drop on new shortcuts.
1 parent 8644316 commit ec0bd42

6 files changed

Lines changed: 6 additions & 4 deletions

tests/helpers/test_package_1.pck

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
create or replace package test_package_1 is
22

33
--%suite
4+
--%displayname(test_package_1)
45
--%suitepath(tests)
56

67
gv_glob_val number;

tests/helpers/test_package_3.pck

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ create or replace package test_package_3 is
22

33
--%suite
44
--%suitepath(tests2)
5+
--%rollback(auto)
56

67
gv_glob_val number;
78

tests/ut_matchers/common/ut.expect.common.be_greater_or_equal.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ declare
44
l_value2 &&1 := &&3;
55
begin
66
--Act
7-
ut.expect(l_value1).to_(be_greater_or_equal(l_value2));
7+
ut.expect(l_value1).to_be_greater_or_equal(l_value2);
88
--Assert
99
if ut_expectation_processor.get_status = &&4 then
1010
:test_result := ut_utils.tr_success;

tests/ut_matchers/common/ut.expect.common.be_greater_than.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ declare
44
l_value2 &&1 := &&3;
55
begin
66
--Act
7-
ut.expect(l_value1).to_(be_greater_than(l_value2));
7+
ut.expect(l_value1).to_be_greater_than(l_value2);
88
--Assert
99
if ut_expectation_processor.get_status = &&4 then
1010
:test_result := ut_utils.tr_success;

tests/ut_matchers/common/ut.expect.common.be_less_or_equal.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ declare
44
l_value2 &&1 := &&3;
55
begin
66
--Act
7-
ut.expect(l_value1).to_(be_less_or_equal(l_value2));
7+
ut.expect(l_value1).to_be_less_or_equal(l_value2);
88
--Assert
99
if ut_expectation_processor.get_status = &&4 then
1010
:test_result := ut_utils.tr_success;

tests/ut_matchers/common/ut.expect.common.be_less_than.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ declare
44
l_value2 &&1 := &&3;
55
begin
66
--Act
7-
ut.expect(l_value1).to_(be_less_than(l_value2));
7+
ut.expect(l_value1).to_be_less_than(l_value2);
88
--Assert
99
if ut_expectation_processor.get_status = &&4 then
1010
:test_result := ut_utils.tr_success;

0 commit comments

Comments
 (0)