From 2cce4c575abe30cb819f2d43e0672ec34d2f2114 Mon Sep 17 00:00:00 2001 From: Zalim Bashorov Date: Sat, 15 Jun 2013 16:12:02 +0400 Subject: [PATCH] Fixed the comment of the native vararg test. --- js/js.translator/testFiles/native/cases/vararg.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/js.translator/testFiles/native/cases/vararg.kt b/js/js.translator/testFiles/native/cases/vararg.kt index 1486d25e137..0f54b78bece 100644 --- a/js/js.translator/testFiles/native/cases/vararg.kt +++ b/js/js.translator/testFiles/native/cases/vararg.kt @@ -83,7 +83,7 @@ fun box(): String { return "failed when test calling order when using spread operator without args" if (!(testCallOrder(1, 2, 3, 4))) - return "failed when test calling order when using spread operator without args" + return "failed when test calling order when using spread operator with some args" val baz: Bar? = Bar(1) if (!(baz!!)?.test(0, 1, 1))