summaryrefslogtreecommitdiff
path: root/test/files/run
diff options
context:
space:
mode:
authorJanek Bogucki <janekdb@gmail.com>2015-06-28 21:42:11 +0100
committerJanek Bogucki <janekdb@gmail.com>2015-06-28 21:42:11 +0100
commit0ff6c81dd3e3e3a60d8f2db845ada167c8266395 (patch)
tree678ec4a9057221823d9d8f14b658e58d9cd477d5 /test/files/run
parent5b8073676cc77c2c889ed690f12bb6a99e790769 (diff)
downloadscala-0ff6c81dd3e3e3a60d8f2db845ada167c8266395.tar.gz
scala-0ff6c81dd3e3e3a60d8f2db845ada167c8266395.tar.bz2
scala-0ff6c81dd3e3e3a60d8f2db845ada167c8266395.zip
Improve method names (m-o)
Diffstat (limited to 'test/files/run')
-rw-r--r--test/files/run/finally.check2
-rw-r--r--test/files/run/finally.scala4
2 files changed, 3 insertions, 3 deletions
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")
}