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

Skip to content
Merged
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
removed "this" from expected message
  • Loading branch information
Pazus committed Jan 17, 2017
commit f29bbf55f917027fd0dab69d55bcf72e03fd6992
2 changes: 1 addition & 1 deletion source/core/types/ut_assert_result.tpb
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ create or replace type body ut_assert_result is

l_expected_msg := ' ' || self.matcher_name || self.additional_info;
if self.expected_value_string is not null or self.expected_type is not null then
l_expected_msg := l_expected_msg || ' this: ';
l_expected_msg := l_expected_msg || ': ';
l_expected_val := self.expected_value_string||'('||self.expected_type||')';
if length(l_expected_msg) > length(l_actual_val_msg) then
l_actual_val_msg := rpad(l_actual_val_msg , length(l_expected_msg));
Expand Down