Skip to content

Commit 34ce2a7

Browse files
committed
Feat: spotlessApply fix
1 parent e66c811 commit 34ce2a7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lesson_15/tdd/tdd_app/src/test/java/com/codedifferently/lesson15/EmployeeManagerTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public void updateEmployee() {
5656
@Test
5757
public void getEmployeeCount() {
5858
employeeManager.removeEmployee(2);
59-
count = employeeManager.getEmployeeCount();
59+
int count = employeeManager.getEmployeeCount();
6060
}
6161

6262
@Test

0 commit comments

Comments
 (0)