diff --git a/idea/resources/intentionDescriptions/ConvertAssertToIfWithThrowIntention/after.kt.template b/idea/resources/intentionDescriptions/ConvertAssertToIfWithThrowIntention/after.kt.template index 631afca3b3e..2999e48a3ca 100644 --- a/idea/resources/intentionDescriptions/ConvertAssertToIfWithThrowIntention/after.kt.template +++ b/idea/resources/intentionDescriptions/ConvertAssertToIfWithThrowIntention/after.kt.template @@ -1,5 +1,5 @@ fun foo() { if (!true) { - throw AssertionException("text") + throw AssertionError("text") } }