Skip to content

Commit

Permalink
Fix: Dynamic-ish loader
Browse files Browse the repository at this point in the history
  • Loading branch information
AdrianBalunan committed Mar 13, 2026
1 parent 77e5287 commit ab5bacd
Showing 1 changed file with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,13 @@ class DonationTest {
// -- Setup --
@BeforeEach
public void setup() {
charity = new Charity("1212", "Charity1", "Something Somewhere Somehow", "Cancer", false, "unverified");

charity =
new Charity(
"1212", "Charity1", "Something Somewhere Somehow", "Cancer", false, "unverified");

user =
new User("Name", "Valid@gmail.com", "123", Role.NORMAL_USER, new Settings(), new Inbox());

}
}

// --- Tests ---
@Test
Expand Down

0 comments on commit ab5bacd

Please sign in to comment.