Skip to content

Commit

Permalink
Fix style issues
Browse files Browse the repository at this point in the history
  • Loading branch information
yyihaoc committed Oct 16, 2024
1 parent a56e818 commit 3389286
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@
import java.util.Collections;
import java.util.List;

import javax.management.relation.Role;

import org.junit.jupiter.api.Test;

import seedu.address.testutil.PersonBuilder;
Expand Down Expand Up @@ -44,7 +42,8 @@ public void equals() {
@Test
public void test_roleContainsKeywords_returnsTrue() {
// One keyword
RoleContainsKeywordsPredicate predicate = new RoleContainsKeywordsPredicate(Collections.singletonList("member"));
RoleContainsKeywordsPredicate predicate = new RoleContainsKeywordsPredicate(Collections
.singletonList("member"));
assertTrue(predicate.test(new PersonBuilder().withTags("member", "exco").build()));

// Multiple keywords
Expand Down

0 comments on commit 3389286

Please sign in to comment.