Skip to content

Commit

Permalink
Attempt to get CI tests to succeed by updating CalendarEventsServiceT…
Browse files Browse the repository at this point in the history
…est.java
  • Loading branch information
rhit-norflwe authored Dec 7, 2024
1 parent 09f3d81 commit 24fe0c3
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@

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

import com.main.omniplanner.user.Event;
import com.main.omniplanner.calendar.CalendarEvents;
import com.main.omniplanner.calendar.CalendarEventsService;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;

Expand All @@ -16,7 +17,7 @@ public class CalendarEventsServiceTest {

@BeforeEach
void setUp() {
calendarEventsService = new calendarEventsService();
calendarEventsService = new CalendarEventsService();
}

@Test
Expand All @@ -43,4 +44,4 @@ public void testGetSaveEvent() {
assertEquals("weekly", testCalendarEvents.getRepeat_timeline());
assertEquals("Meeting", testCalendarEvents.getDescription());
}
}
}

0 comments on commit 24fe0c3

Please sign in to comment.