From 41c4c3befdcea17698f233fe1fb6887cb1ae3f60 Mon Sep 17 00:00:00 2001 From: Michael Bogdanov Date: Wed, 8 Oct 2014 09:34:50 +0400 Subject: [PATCH] Fix test data for KT-3285 --- compiler/testData/codegen/box/extensionFunctions/kt3285.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/testData/codegen/box/extensionFunctions/kt3285.kt b/compiler/testData/codegen/box/extensionFunctions/kt3285.kt index c5d34fa47c1..2874bcdb2e8 100644 --- a/compiler/testData/codegen/box/extensionFunctions/kt3285.kt +++ b/compiler/testData/codegen/box/extensionFunctions/kt3285.kt @@ -26,7 +26,7 @@ class Doggy(): Pet() { fun box(): String { Doggy().play() - if (sayResult != "Time to play! Playing with my owner!") return "fail: $result" + if (sayResult != "Time to play! Playing with my owner!") return "fail: $sayResult" return "OK" } \ No newline at end of file