diff --git a/docs/tr/skills/quarkus-tdd/SKILL.md b/docs/tr/skills/quarkus-tdd/SKILL.md index c9def11a..5ca100fd 100644 --- a/docs/tr/skills/quarkus-tdd/SKILL.md +++ b/docs/tr/skills/quarkus-tdd/SKILL.md @@ -442,8 +442,8 @@ class EventServiceTest { Object nullPayload = null; // ACT & ASSERT - IllegalArgumentException exception = assertThrows( - IllegalArgumentException.class, + NullPointerException exception = assertThrows( + NullPointerException.class, () -> eventService.createSuccessEvent(nullPayload, "EVENT_TYPE") );