[seam-commits] Seam SVN: r11542 - branches/community/Seam_2_2/src/test/ftest/src/main/org/jboss/seam/example/common/test/selenium.
seam-commits at lists.jboss.org
seam-commits at lists.jboss.org
Mon Oct 5 06:06:01 EDT 2009
Author: jharting
Date: 2009-10-05 06:06:00 -0400 (Mon, 05 Oct 2009)
New Revision: 11542
Modified:
branches/community/Seam_2_2/src/test/ftest/src/main/org/jboss/seam/example/common/test/selenium/SeamSeleniumTest.java
Log:
minor
Modified: branches/community/Seam_2_2/src/test/ftest/src/main/org/jboss/seam/example/common/test/selenium/SeamSeleniumTest.java
===================================================================
--- branches/community/Seam_2_2/src/test/ftest/src/main/org/jboss/seam/example/common/test/selenium/SeamSeleniumTest.java 2009-10-05 10:04:20 UTC (rev 11541)
+++ branches/community/Seam_2_2/src/test/ftest/src/main/org/jboss/seam/example/common/test/selenium/SeamSeleniumTest.java 2009-10-05 10:06:00 UTC (rev 11542)
@@ -97,7 +97,10 @@
}
public void stopBrowser() {
- browser.stop();
+ if (browser != null)
+ {
+ browser.stop();
+ }
}
public String getProperty(String key) {
More information about the seam-commits
mailing list