Skip to content

Commit

Permalink
Fix checkstyle
Browse files Browse the repository at this point in the history
  • Loading branch information
chonguschonguschongus committed Oct 31, 2023
1 parent 15468f7 commit 97dd5a5
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

import static org.junit.jupiter.api.Assertions.assertTrue;

import java.util.Arrays;
import java.util.function.Predicate;

import org.junit.jupiter.api.Test;
Expand Down Expand Up @@ -65,14 +64,14 @@ public void parseInputWithMultipleKeywords() {
}

@Test
public void parseInputWithICAndGender() {
public void parseInputWithIcAndGender() {
String[] input = {"S1234567A", "M"};
Predicate<Person> predicate = KeywordParser.parseInput(input);
assertTrue(predicate instanceof IcContainsKeywordsPredicate);
}

@Test
public void parseInputWithICAndBloodType() {
public void parseInputWithIcAndBloodType() {
String[] input = {"S1234567A", "A+"};
Predicate<Person> predicate = KeywordParser.parseInput(input);
assertTrue(predicate instanceof IcContainsKeywordsPredicate);
Expand Down

0 comments on commit 97dd5a5

Please sign in to comment.