Skip to content

Commit

Permalink
Attempt to get CI tests to succeed by making changes to HealthEventsS…
Browse files Browse the repository at this point in the history
…erviceTest
  • Loading branch information
rhit-norflwe authored Dec 8, 2024
1 parent c1dc1d2 commit 70af392
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@

import java.sql.Date;
import java.sql.Time;
import java.util.*;

public class HealthEventsServiceTest {

Expand All @@ -17,7 +18,7 @@ public class HealthEventsServiceTest {

@BeforeEach
void setUp() {
healthEventsService = new healthEventsService();
healthEventsService = new HealthEventsService();
}

@Test
Expand All @@ -39,7 +40,7 @@ public void testGetSaveEvent() {
assertEquals("Team Meeting", testHealthEvents.getTitle());
assertEquals(date, testHealthEvents.getEvent_date());
assertEquals(time, testHealthEvents.getEvent_time());
assertEquals(true, testHealthEvents.getRepeating());
assertEquals(true, testHealthEvents.isRepeating());
assertEquals("weekly", testHealthEvents.getRepeat_timeline());
}
}
}

0 comments on commit 70af392

Please sign in to comment.