From b436d9ec5e1d6025d26b1da85769994e387646d4 Mon Sep 17 00:00:00 2001 From: Stephane Bailliez Date: Wed, 30 Jan 2002 21:34:31 +0000 Subject: [PATCH] fix constants for suites events git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@271014 13f79535-47bb-0310-9956-ffa450edef68 --- .../ant/taskdefs/optional/junit/remote/EventDispatcher.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/proposal/sandbox/junit/src/main/org/apache/tools/ant/taskdefs/optional/junit/remote/EventDispatcher.java b/proposal/sandbox/junit/src/main/org/apache/tools/ant/taskdefs/optional/junit/remote/EventDispatcher.java index 32adcd011..3808bae41 100644 --- a/proposal/sandbox/junit/src/main/org/apache/tools/ant/taskdefs/optional/junit/remote/EventDispatcher.java +++ b/proposal/sandbox/junit/src/main/org/apache/tools/ant/taskdefs/optional/junit/remote/EventDispatcher.java @@ -109,10 +109,10 @@ public class EventDispatcher { case TestRunEvent.TEST_ENDED: fireTestEnded(evt); break; - case TestRunEvent.TESTSUITE_ENDED: + case TestRunEvent.SUITE_ENDED: fireSuiteEnded(evt); break; - case TestRunEvent.TESTSUITE_STARTED: + case TestRunEvent.SUITE_STARTED: fireSuiteStarted(evt); break; default: