Skip to content

Commit

Permalink
m
Browse files Browse the repository at this point in the history
  • Loading branch information
Andre G Stransky committed Mar 14, 2023
1 parent 3650ba6 commit 33e7c73
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions TestListExamples.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ public class TestListExamples {

@Test(timeout = 500)
public void testMergeRightEnd() {
List<String> left = Arrays.asList("a", "c", "e");
List<String> left = Arrays.asList("a", "b", "e");
List<String> right = Arrays.asList("b", "h");
List<String> merged = ListExamples.merge(left, right);
List<String> expected = Arrays.asList("a", "b", "c", "e", "h");
List<String> expected = Arrays.asList("a", "b", "b", "e", "h");
assertEquals(expected, merged);
}

Expand Down

0 comments on commit 33e7c73

Please sign in to comment.