From 5848ea8d773c45fd9ec22904291ad6fda3364e89 Mon Sep 17 00:00:00 2001 From: Natalia Ukhorskaya Date: Thu, 24 Sep 2015 14:22:54 +0300 Subject: [PATCH] Fix usage of deprecated function in debugger testData --- idea/testData/debugger/tinyApp/outs/stdlib.out | 2 +- .../debugger/tinyApp/src/evaluate/singleBreakpoint/stdlib.kt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/idea/testData/debugger/tinyApp/outs/stdlib.out b/idea/testData/debugger/tinyApp/outs/stdlib.out index 8fa8a5b598a..c076b2a4cd9 100644 --- a/idea/testData/debugger/tinyApp/outs/stdlib.out +++ b/idea/testData/debugger/tinyApp/outs/stdlib.out @@ -9,7 +9,7 @@ Compile bytecode for javaClass() Compile bytecode for javaClass() Compile bytecode for 100.toInt() Compile bytecode for 100.toLong() -Compile bytecode for args.sortBy { it }.size() +Compile bytecode for args.sortedBy { it }.size() Disconnected from the target VM, address: '!HOST_NAME!:PORT_NAME!', transport: 'socket' Process finished with exit code 0 diff --git a/idea/testData/debugger/tinyApp/src/evaluate/singleBreakpoint/stdlib.kt b/idea/testData/debugger/tinyApp/src/evaluate/singleBreakpoint/stdlib.kt index 76cbe1ea5f9..d02f1d8c15e 100644 --- a/idea/testData/debugger/tinyApp/src/evaluate/singleBreakpoint/stdlib.kt +++ b/idea/testData/debugger/tinyApp/src/evaluate/singleBreakpoint/stdlib.kt @@ -26,5 +26,5 @@ fun main(args: Array) { // EXPRESSION: 100.toLong() // RESULT: 100: J -// EXPRESSION: args.sortBy { it }.size() +// EXPRESSION: args.sortedBy { it }.size() // RESULT: 0: I \ No newline at end of file