Method name typo

This commit is contained in:
Alex Golub 2022-04-20 14:06:43 +03:00
parent 37b5df83c5
commit 7ef7265dce
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ class ExceptionUnitTest {
} }
@Test @Test
void whenModifyMapDuringIteration_thenThrowExecption() { void whenModifyMapDuringIteration_thenThrowException() {
Map<Integer, String> hashmap = new HashMap<>(); Map<Integer, String> hashmap = new HashMap<>();
hashmap.put(1, "One"); hashmap.put(1, "One");
hashmap.put(2, "Two"); hashmap.put(2, "Two");