From 525a1cc3c69da4a2fc027a4cadb4f52c42730037 Mon Sep 17 00:00:00 2001 From: Valentin Kipyatkov Date: Thu, 9 Oct 2014 21:27:59 +0200 Subject: [PATCH] Fixed tests --- idea/testData/completion/weighers/basic/KeywordsLast.kt | 2 +- .../completion/weighers/basic/LocalsBeforeKeywords.kt | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/idea/testData/completion/weighers/basic/KeywordsLast.kt b/idea/testData/completion/weighers/basic/KeywordsLast.kt index 65293c6f7fd..5b8a37bda8f 100644 --- a/idea/testData/completion/weighers/basic/KeywordsLast.kt +++ b/idea/testData/completion/weighers/basic/KeywordsLast.kt @@ -3,4 +3,4 @@ fun main(variables: Array) { va } -// ORDER: values, val, variables, var, vararg \ No newline at end of file +// ORDER: values, val, variables, var \ No newline at end of file diff --git a/idea/testData/completion/weighers/basic/LocalsBeforeKeywords.kt b/idea/testData/completion/weighers/basic/LocalsBeforeKeywords.kt index ad72690a83c..1da772909bf 100644 --- a/idea/testData/completion/weighers/basic/LocalsBeforeKeywords.kt +++ b/idea/testData/completion/weighers/basic/LocalsBeforeKeywords.kt @@ -1,6 +1,6 @@ fun test() { - val a = 12 - a + val r = 12 + r } -// ORDER: a, as \ No newline at end of file +// ORDER: r, return \ No newline at end of file