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