Skip to content

Commit

Permalink
Fix: Package Decloration fix and corrected params
Browse files Browse the repository at this point in the history
  • Loading branch information
AdrianBalunan committed Mar 16, 2026
1 parent 33247b1 commit e0db729
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
package ntnu.systemutvikling.team6.models;
package ntnu.systemutvikling.team6.database;

import ntnu.systemutvikling.team6.database.DatabaseConnection;
import ntnu.systemutvikling.team6.models.Charity;
import ntnu.systemutvikling.team6.models.CharityRegistry;
import ntnu.systemutvikling.team6.scraper.APICharityData;
import ntnu.systemutvikling.team6.database.DatabaseManager;
import org.junit.jupiter.api.*;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public class CharityTest {

@BeforeEach
public void setup() {
charity = new Charity("1239813", "www.aaaa.com", "Charity1", false, "unverified");
charity = new Charity("1239813", "www.aaaa.com", "Charity1", false, "approved");
}

/** Getters should work: */
Expand Down

0 comments on commit e0db729

Please sign in to comment.