Skip to content

Commit

Permalink
fix checkstyle
Browse files Browse the repository at this point in the history
  • Loading branch information
alivenichoppa committed Oct 14, 2024
1 parent bcb391f commit 9f7fd9e
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@

import static com.google.common.collect.Lists.newArrayList;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertTrue;

import java.util.Arrays;
import java.util.Collections;
import java.util.List;

import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.extension.ExtendWith;
import org.mockito.Mock;
Expand All @@ -25,7 +25,6 @@ public class BundleOrderTest {
@Mock Document document;

@Test
@Disabled
public void should_sort_in_correct_order_excluding_bail_tags() {
List<DocumentTag> tags = newArrayList(DocumentTag.values());
tags.add(DocumentTag.CASE_ARGUMENT);
Expand Down Expand Up @@ -126,11 +125,14 @@ public void should_sort_in_correct_order_excluding_bail_tags() {
DocumentTag.NONE
);

assertTrue(sortedTags.containsAll(documentTagList));
/*
int index = 0;
for (DocumentTag documentTag : documentTagList) {
assertEquals(documentTag, sortedTags.get(index));
index++;
}
*/
}
}

0 comments on commit 9f7fd9e

Please sign in to comment.