From a59962c620996949b9fe4edc3fa4fd670450dbe9 Mon Sep 17 00:00:00 2001 From: Ilya Gorbunov Date: Mon, 7 Sep 2015 22:10:53 +0300 Subject: [PATCH] Change test data to reproduce the same error as was before adding an overload of assert. --- .../intentions/convertAssertToIf/inapplicableNoCondition.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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