Method name typo

This commit is contained in:
Alex Golub
2022-04-20 14:06:43 +03:00
parent 488631d4ba
commit 4b3b447695

View File

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