Skip to content

Commit

Permalink
Merge branch 'main' into sync-two-fer-exercise
Browse files Browse the repository at this point in the history
  • Loading branch information
larshp authored Apr 2, 2024
2 parents 1f1bfcd + 9ee3d05 commit 9389982
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion abaplint.json
Original file line number Diff line number Diff line change
Expand Up @@ -697,7 +697,7 @@
"severity": "Error"
},
"prefer_inline": {
"exclude": [],
"exclude": ["grains"],
"severity": "Error"
},
"prefer_is_not": {
Expand Down
4 changes: 3 additions & 1 deletion exercises/practice/grains/zcl_grains.clas.testclasses.abap
Original file line number Diff line number Diff line change
Expand Up @@ -103,9 +103,11 @@ CLASS ltcl_grains IMPLEMENTATION.

"returns the total number of grains on the board
METHOD test_total.
DATA lv_expected TYPE zcl_grains=>type_result.
lv_expected = 18446744073709551615.
cl_abap_unit_assert=>assert_equals(
act = cut->total( )
exp = 18446744073709551615 ).
exp = lv_expected ).
ENDMETHOD.


Expand Down

0 comments on commit 9389982

Please sign in to comment.