Skip to content

Commit

Permalink
Checkstyle
Browse files Browse the repository at this point in the history
  • Loading branch information
aditi2313 committed Feb 14, 2022
1 parent 5ff5194 commit 78bcb58
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions src/test/java/task/DeadlineTest.java
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
package task;

import org.junit.jupiter.api.Test;

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

import org.junit.jupiter.api.Test;

public class DeadlineTest {
@Test
public void symbolTest(){
public void symbolTest() {
Deadline testDeadline = new Deadline("Complete 21003 ip tasks", "2021-01-30");
assertEquals(testDeadline.symbol(), "D");
}
Expand Down
6 changes: 3 additions & 3 deletions src/test/java/task/EventTest.java
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
package task;

import org.junit.jupiter.api.Test;

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

import org.junit.jupiter.api.Test;

public class EventTest {
@Test
public void symbolTest(){
public void symbolTest() {
Event testEvent = new Event("Complete 21003 ip tasks", "2021-01-30");
assertEquals(testEvent.symbol(), "E");
}
Expand Down

0 comments on commit 78bcb58

Please sign in to comment.