From 0ff6c81dd3e3e3a60d8f2db845ada167c8266395 Mon Sep 17 00:00:00 2001 From: Janek Bogucki Date: Sun, 28 Jun 2015 21:42:11 +0100 Subject: Improve method names (m-o) --- test/files/run/finally.check | 2 +- test/files/run/finally.scala | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'test/files/run') diff --git a/test/files/run/finally.check b/test/files/run/finally.check index 901a797426..b0f2293d11 100644 --- a/test/files/run/finally.check +++ b/test/files/run/finally.check @@ -29,7 +29,7 @@ body in finally java.lang.Exception ---------------------------------------- -Running nestedFinalies +Running nestedFinallyBlocks in finally 1 in finally 2 ---------------------------------------- diff --git a/test/files/run/finally.scala b/test/files/run/finally.scala index b66354ca03..467c9e5868 100644 --- a/test/files/run/finally.scala +++ b/test/files/run/finally.scala @@ -94,7 +94,7 @@ object Test extends App { } // nested finally blocks with return value - def nestedFinalies: Int = + def nestedFinallyBlocks: Int = try { try { return 10 @@ -123,5 +123,5 @@ object Test extends App { test(throwBody, "throwBody") test(retFinally, "retFinally") test(throwFinally, "throwFinally") - test(nestedFinalies, "nestedFinalies") + test(nestedFinallyBlocks, "nestedFinallyBlocks") } -- cgit v1.2.3