You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: replace instanceof assertions with typed catch to satisfy SpotBugs JUA
SpotBugs JUA flags Assert.assertTrue(e instanceof T) because the message
hides what type was actually thrown on failure. Using a typed catch block
is stricter: any unexpected exception type propagates as a test error with
the full stack trace, which is more informative than a failed boolean
assertion.
0 commit comments