Skip to content

Commit

Permalink
chore: remove case
Browse files Browse the repository at this point in the history
  • Loading branch information
jcosentino11 committed Sep 20, 2023
1 parent 22fe672 commit 67b9066
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,7 @@ private static Stream<Arguments> mergeTestInput() {
Arguments.of("GIVEN patch with new nodes in an array node, THEN replaces all the elements in the source with the elements in the patch", SOURCE_NODE_WITH_ARRAY_NODE_STRING, PATCH_NODE_WITH_ARRAY_VALUE_NODE_STRING, MERGED_NODE_WITH_UPDATED_ARRAY_NODE_STRING),
Arguments.of("GIVEN patch with empty state, THEN source node is cleared", SOURCE_NODE_STRING, EMPTY_DOCUMENT, EMPTY_DOCUMENT),
Arguments.of("GIVEN patch with null state, THEN source node is cleared", SOURCE_NODE_STRING, NULL_DOCUMENT, EMPTY_DOCUMENT),
Arguments.of("GIVEN empty source and non-empty patch, THEN patch is the result", EMPTY_DOCUMENT, SOURCE_NODE_STRING, SOURCE_NODE_STRING),
Arguments.of("GIVEN null source and non-empty patch, THEN patch is the result", NULL_DOCUMENT, SOURCE_NODE_STRING, SOURCE_NODE_STRING)
);
Arguments.of("GIVEN empty source and non-empty patch, THEN patch is the result", EMPTY_DOCUMENT, SOURCE_NODE_STRING, SOURCE_NODE_STRING));
}


Expand Down

0 comments on commit 67b9066

Please sign in to comment.