From f25a9ffe98abbbd8e1b90357c6fd169541e4f03b Mon Sep 17 00:00:00 2001 From: Marc Khouzam Date: Wed, 30 Jul 2014 07:48:55 -0400 Subject: [PATCH] Typo Change-Id: I99683db5c79bf2551e58c66ba041edccb1b28bcc Signed-off-by: Marc Khouzam --- .../eclipse/cdt/tests/dsf/gdb/framework/BaseTestCase.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dsf-gdb/org.eclipse.cdt.tests.dsf.gdb/src/org/eclipse/cdt/tests/dsf/gdb/framework/BaseTestCase.java b/dsf-gdb/org.eclipse.cdt.tests.dsf.gdb/src/org/eclipse/cdt/tests/dsf/gdb/framework/BaseTestCase.java index 29b4a39f1a2..85b4e09ca45 100644 --- a/dsf-gdb/org.eclipse.cdt.tests.dsf.gdb/src/org/eclipse/cdt/tests/dsf/gdb/framework/BaseTestCase.java +++ b/dsf-gdb/org.eclipse.cdt.tests.dsf.gdb/src/org/eclipse/cdt/tests/dsf/gdb/framework/BaseTestCase.java @@ -59,7 +59,7 @@ import org.junit.rules.Timeout; * This is the base class for the GDB/MI Unit tests. * It provides the @Before and @After methods which setup * and teardown the launch, for each test. - * If these methods are overwridden by a subclass, the new method + * If these methods are overridden by a subclass, the new method * must call super.baseSetup or super.baseTeardown itself, if this * code is to be run. */ @@ -68,7 +68,7 @@ public class BaseTestCase { // Timeout value for each individual test private final static int TEST_TIMEOUT = 5 * 60 * 1000; // 5 minutes in milliseconds - // Make the current test naem available through testName.getMethodName() + // Make the current test name available through testName.getMethodName() @Rule public TestName testName = new TestName(); // Add a timeout for each test, to make sure no test hangs @@ -85,7 +85,7 @@ public class BaseTestCase { // A set of global launch attributes which are not // reset when we load a new class of tests. // This allows a Suite to set an attribute - // The suite is reponsible for clearing those attributes + // The suite is responsible for clearing those attributes // once it is finished private static Map globalLaunchAttributes = new HashMap();