Skip to content

Commit

Permalink
Fix: ChairtyTest now works
Browse files Browse the repository at this point in the history
  • Loading branch information
AdrianBalunan committed Apr 13, 2026
1 parent 81e1d3f commit 42218b7
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

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

import java.util.ArrayList;
import java.util.UUID;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
Expand All @@ -27,7 +28,7 @@ public void testGettingIdShouldWork() {

@Test
public void testGettingCategoryShouldWork() {
assertEquals("", charity.getCategory());
assertEquals(new ArrayList<>(), charity.getCategory());
}

@Test
Expand Down

0 comments on commit 42218b7

Please sign in to comment.