Update skills/quarkus-tdd/SKILL.md

Co-authored-by: greptile-apps[bot] <165735046+greptile-apps[bot]@users.noreply.github.com>
This commit is contained in:
Alexis Le Dain
2026-04-09 18:35:08 +02:00
committed by GitHub
parent e3d4e33ddb
commit 53e2e798f7

View File

@@ -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")
);