Return-Path: Delivered-To: apmail-maven-continuum-commits-archive@www.apache.org Received: (qmail 71928 invoked from network); 27 Dec 2006 04:10:40 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 27 Dec 2006 04:10:40 -0000 Received: (qmail 90086 invoked by uid 500); 27 Dec 2006 04:10:47 -0000 Delivered-To: apmail-maven-continuum-commits-archive@maven.apache.org Received: (qmail 90063 invoked by uid 500); 27 Dec 2006 04:10:47 -0000 Mailing-List: contact continuum-commits-help@maven.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: continuum-dev@maven.apache.org Delivered-To: mailing list continuum-commits@maven.apache.org Received: (qmail 90050 invoked by uid 99); 27 Dec 2006 04:10:46 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 26 Dec 2006 20:10:46 -0800 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 26 Dec 2006 20:10:39 -0800 Received: by eris.apache.org (Postfix, from userid 65534) id E3FDC1A981A; Tue, 26 Dec 2006 20:09:46 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r490438 - /maven/continuum/trunk/continuum-webapp-test/src/test/it/org/apache/continuum/web/test/AbstractContinuumTestCase.java Date: Wed, 27 Dec 2006 04:09:46 -0000 To: continuum-commits@maven.apache.org From: brett@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20061227040946.E3FDC1A981A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: brett Date: Tue Dec 26 20:09:46 2006 New Revision: 490438 URL: http://svn.apache.org/viewvc?view=rev&rev=490438 Log: fix the test cases after web-ui-test api change Modified: maven/continuum/trunk/continuum-webapp-test/src/test/it/org/apache/continuum/web/test/AbstractContinuumTestCase.java Modified: maven/continuum/trunk/continuum-webapp-test/src/test/it/org/apache/continuum/web/test/AbstractContinuumTestCase.java URL: http://svn.apache.org/viewvc/maven/continuum/trunk/continuum-webapp-test/src/test/it/org/apache/continuum/web/test/AbstractContinuumTestCase.java?view=diff&rev=490438&r1=490437&r2=490438 ============================================================================== --- maven/continuum/trunk/continuum-webapp-test/src/test/it/org/apache/continuum/web/test/AbstractContinuumTestCase.java (original) +++ maven/continuum/trunk/continuum-webapp-test/src/test/it/org/apache/continuum/web/test/AbstractContinuumTestCase.java Tue Dec 26 20:09:46 2006 @@ -25,7 +25,7 @@ public abstract class AbstractContinuumTestCase extends AbstractSeleniumTestCase { - private String baseUrl = "http://localhost:9595"; + private String baseUrl = "http://localhost:9595/continuum"; public final static String DEFAULT_PROJ_GRP_NAME = "Default Project Group"; @@ -72,7 +72,7 @@ public String getBaseUrl() { - return "http://localhost:9595/continuum"; + return baseUrl; } ////////////////////////////////////// @@ -463,5 +463,10 @@ } super.tearDown(); + } + + protected String getWebContext() + { + return "/continuum"; } }