Skip to content

Commit

Permalink
Merge remote-tracking branch 'dbw9580/feat/cluster-view' into feat/cl…
Browse files Browse the repository at this point in the history
…uster-view
  • Loading branch information
dbw9580 committed Nov 30, 2023
2 parents d93f454 + d12df13 commit 183e289
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ public void equalityWorkersOrderDoesNotMatter() {
);
Instant instant = Instant.now();
WorkerClusterView view1 = new WorkerClusterView(workers, instant);
WorkerClusterView view2 = new WorkerClusterView(Lists.reverse(workers), instant);
WorkerClusterView view2 = new WorkerClusterView(new ArrayList<>(Lists.reverse(workers)), instant);
assertEquals(view1, view2);
}

Expand Down

0 comments on commit 183e289

Please sign in to comment.