# HG changeset patch # User Doug Simon # Date 1374860902 -7200 # Node ID f11a4e137aedca0dac82f8de9334b42a9bf8003a # Parent 1b800f44ac0c72ab36b4d276401a721363a7b3fe fix spelling diff -r 1b800f44ac0c -r f11a4e137aed graal/com.oracle.graal.jtt/src/com/oracle/graal/jtt/JTTTest.java --- 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. emptySet(), name, args); } - protected void runTest(Set shoutNotDeopt, String name, Object... args) { + protected void runTest(Set 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; } }