Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion src/checks/y_check_unit_test_assert.clas.abap
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ CLASS y_check_unit_test_assert IMPLEMENTATION.
TRY.
DATA(previous_token) = ref_scan->tokens[ position - 1 ].
DATA(next_token) = ref_scan->tokens[ position + 1 ].
result = xsdbool( previous_token-str CP '*[' AND next_token-str CP ']*').
result = xsdbool( previous_token-str CP '*[' AND next_token-str CP ']*' ).
CATCH cx_sy_itab_line_not_found.
result = abap_false.
RETURN.
Expand Down
2 changes: 1 addition & 1 deletion src/profiles/y_profile_admin_classes.prog.abap
Original file line number Diff line number Diff line change
Expand Up @@ -1418,7 +1418,7 @@ CLASS lcl_util IMPLEMENTATION.
ENDTRY.

TRY.
DATA(checks) = profile_manager->select_checks( profile ).
profile_manager->select_checks( profile ).
CATCH ycx_entry_not_found.
RETURN.
ENDTRY.
Expand Down