Skip to content

Commit

Permalink
FIX error
Browse files Browse the repository at this point in the history
  • Loading branch information
JPechberty committed Jan 28, 2025
1 parent 68f4e5d commit febdb14
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test/java/com/sio/javatd5sio2/models/TaskTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ void setUp() {
void testTaskInitialization() {
Task newTask = new Task("New task");
assertEquals("New task", newTask.getTitle());
//assertFalse(newTask.isCompleted());
assertTrue(newTask.isCompleted());
assertFalse(newTask.isCompleted());
//assertTrue(newTask.isCompleted());
}

@Test
Expand Down

0 comments on commit febdb14

Please sign in to comment.