From 53e2e798f71dab2f2567d70cc9f7a14192e72d41 Mon Sep 17 00:00:00 2001 From: Alexis Le Dain <47504664+Alexsky347@users.noreply.github.com> Date: Thu, 9 Apr 2026 18:35:08 +0200 Subject: [PATCH] Update skills/quarkus-tdd/SKILL.md Co-authored-by: greptile-apps[bot] <165735046+greptile-apps[bot]@users.noreply.github.com> --- skills/quarkus-tdd/SKILL.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/skills/quarkus-tdd/SKILL.md b/skills/quarkus-tdd/SKILL.md index 9d977cce..c9dd4153 100644 --- a/skills/quarkus-tdd/SKILL.md +++ b/skills/quarkus-tdd/SKILL.md @@ -445,8 +445,8 @@ class EventServiceTest { Object nullPayload = null; // ACT & ASSERT - IllegalArgumentException exception = assertThrows( - IllegalArgumentException.class, + NullPointerException exception = assertThrows( + NullPointerException.class, () -> eventService.createSuccessEvent(nullPayload, "EVENT_TYPE") );