Merge pull request #1077 from larshp/issue_1075

downport, #1075
This commit is contained in:
Lars Hvam 2017-12-19 17:42:46 +01:00 committed by GitHub
commit 7665cb37ec
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 6 deletions

View File

@ -199,7 +199,7 @@ CLASS lcl_object_devc IMPLEMENTATION.
invalid_translation_depth = 18
wrong_mainpack_value = 19
superpackage_invalid = 20
error_in_cts_checks = 21
* error_in_cts_checks = 21 downport, does not exist in 7.31
OTHERS = 22 ).
IF sy-subrc <> 0.
zcx_abapgit_exception=>raise( |Error from CL_PACKAGE_FACTORY=>CREATE_NEW_PACKAGE { sy-subrc }| ).

View File

@ -2757,7 +2757,9 @@ CLASS ltcl_oo_serialize IMPLEMENTATION.
METHOD _then_should_be_skipped.
cl_abap_unit_assert=>assert_true( act = mv_skip_testclass
cl_abap_unit_assert=>assert_equals(
act = mv_skip_testclass
exp = abap_true
msg = |Testclass should be skipped| ).
ENDMETHOD.
@ -2765,7 +2767,9 @@ CLASS ltcl_oo_serialize IMPLEMENTATION.
METHOD _then_should_not_be_skipped.
cl_abap_unit_assert=>assert_false( act = mv_skip_testclass
cl_abap_unit_assert=>assert_equals(
act = mv_skip_testclass
exp = abap_false
msg = |Testclass should not be skipped| ).
ENDMETHOD.