You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: source/core/types/ut_expectation_result.tps
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
create or replace type ut_assert_result as object(
1
+
create or replace type ut_expectation_result as object(
2
2
/*
3
3
utPLSQL - Version X.X.X.X
4
4
Copyright 2016 - 2017 utPLSQL Project
@@ -56,14 +56,14 @@ create or replace type ut_assert_result as object(
56
56
* The information about the line of code that invoked the expectation
57
57
*/
58
58
caller_info varchar2(4000 char),
59
-
constructor function ut_assert_result(self in out nocopy ut_assert_result, a_result integer, a_error_message varchar2)
59
+
constructor function ut_expectation_result(self in out nocopy ut_expectation_result, a_result integer, a_error_message varchar2)
60
60
return self as result,
61
-
constructor function ut_assert_result(self in out nocopy ut_assert_result, a_name varchar2, a_additional_info varchar2, a_error_message varchar2,
61
+
constructor function ut_expectation_result(self in out nocopy ut_expectation_result, a_name varchar2, a_additional_info varchar2, a_error_message varchar2,
0 commit comments