diff --git a/idea/testData/intentions/convertAssertToIf/inapplicableNoCondition.kt b/idea/testData/intentions/convertAssertToIf/inapplicableNoCondition.kt index 23cf6915183..00134f305af 100644 --- a/idea/testData/intentions/convertAssertToIf/inapplicableNoCondition.kt +++ b/idea/testData/intentions/convertAssertToIf/inapplicableNoCondition.kt @@ -1,7 +1,7 @@ // IS_APPLICABLE: false // WITH_RUNTIME -// ERROR: None of the following functions can be called with the arguments supplied. +// ERROR: None of the following functions can be called with the arguments supplied. fun foo() { - assert { "text" } + assert() } \ No newline at end of file