Skip to content

Commit

Permalink
rename
Browse files Browse the repository at this point in the history
  • Loading branch information
irof committed Mar 5, 2018
1 parent ea9119b commit 40b7e59
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/java/application/TodoService.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import domain.Tasks;

public class TodoService {
public Tasks todos() {
public Tasks tasks() {
return new Tasks();
}
}
2 changes: 1 addition & 1 deletion src/test/java/application/TodoServiceTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class TodoServiceTest {
@Test
void やることがとれる() {
TodoService sut = new TodoService();
Tasks actual = sut.todos();
Tasks actual = sut.tasks();
assertThat(actual).isNotNull();
}
}

0 comments on commit 40b7e59

Please sign in to comment.