changeset 10887:f11a4e137aed

fix spelling
author Doug Simon <doug.simon@oracle.com>
date Fri, 26 Jul 2013 19:48:22 +0200
parents 1b800f44ac0c
children 406d9b8bf040
files graal/com.oracle.graal.jtt/src/com/oracle/graal/jtt/JTTTest.java
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/graal/com.oracle.graal.jtt/src/com/oracle/graal/jtt/JTTTest.java	Fri Jul 26 16:53:34 2013 +0200
+++ b/graal/com.oracle.graal.jtt/src/com/oracle/graal/jtt/JTTTest.java	Fri Jul 26 19:48:22 2013 +0200
@@ -97,16 +97,16 @@
         runTest(Collections.<DeoptimizationReason> emptySet(), name, args);
     }
 
-    protected void runTest(Set<DeoptimizationReason> shoutNotDeopt, String name, Object... args) {
+    protected void runTest(Set<DeoptimizationReason> shouldNotDeopt, String name, Object... args) {
         Method method = getMethod(name);
         Object receiver = Modifier.isStatic(method.getModifiers()) ? null : this;
 
         Result expect = executeExpected(method, receiver, args);
 
-        test(method, expect, shoutNotDeopt, receiver, args);
+        test(method, expect, shouldNotDeopt, receiver, args);
         if (args.length > 0) {
             this.argsToBind = args;
-            test(method, expect, shoutNotDeopt, receiver, args);
+            test(method, expect, shouldNotDeopt, receiver, args);
             this.argsToBind = null;
         }
     }