You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tapestry.apache.org by hl...@apache.org on 2013/11/04 19:05:32 UTC

[2/2] git commit: Turn off unwanted overrides of the browser to Chrome

Turn off unwanted overrides of the browser to Chrome


Project: http://git-wip-us.apache.org/repos/asf/tapestry-5/repo
Commit: http://git-wip-us.apache.org/repos/asf/tapestry-5/commit/c1c2d0bb
Tree: http://git-wip-us.apache.org/repos/asf/tapestry-5/tree/c1c2d0bb
Diff: http://git-wip-us.apache.org/repos/asf/tapestry-5/diff/c1c2d0bb

Branch: refs/heads/master
Commit: c1c2d0bbe1d9ace80085993e9fd2ac08209e153f
Parents: f5daf48
Author: Howard M. Lewis Ship <hl...@apache.org>
Authored: Mon Nov 4 10:05:23 2013 -0800
Committer: Howard M. Lewis Ship <hl...@apache.org>
Committed: Mon Nov 4 10:05:23 2013 -0800

----------------------------------------------------------------------
 .../integration/app1/ModuleConfigurationCallbackTests.groovy     | 4 ++--
 .../java/org/apache/tapestry5/integration/app1/App1TestCase.java | 2 +-
 .../org/apache/tapestry5/integration/app1/BeanEditorTests.java   | 2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/c1c2d0bb/tapestry-core/src/test/groovy/org/apache/tapestry5/integration/app1/ModuleConfigurationCallbackTests.groovy
----------------------------------------------------------------------
diff --git a/tapestry-core/src/test/groovy/org/apache/tapestry5/integration/app1/ModuleConfigurationCallbackTests.groovy b/tapestry-core/src/test/groovy/org/apache/tapestry5/integration/app1/ModuleConfigurationCallbackTests.groovy
index fbe9cdb..c305d71 100644
--- a/tapestry-core/src/test/groovy/org/apache/tapestry5/integration/app1/ModuleConfigurationCallbackTests.groovy
+++ b/tapestry-core/src/test/groovy/org/apache/tapestry5/integration/app1/ModuleConfigurationCallbackTests.groovy
@@ -14,10 +14,10 @@
 
 package org.apache.tapestry5.integration.app1
 
-import org.apache.tapestry5.test.TapestryTestConfiguration;
+import org.apache.tapestry5.test.TapestryTestConfiguration
 import org.testng.annotations.Test
 
-@TapestryTestConfiguration(webAppFolder = "src/test/app1", browserStartCommand="*googlechrome")
+@TapestryTestConfiguration(webAppFolder = "src/test/app1")
 class ModuleConfigurationCallbackTests extends App1TestCase {
 
     @Test

http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/c1c2d0bb/tapestry-core/src/test/java/org/apache/tapestry5/integration/app1/App1TestCase.java
----------------------------------------------------------------------
diff --git a/tapestry-core/src/test/java/org/apache/tapestry5/integration/app1/App1TestCase.java b/tapestry-core/src/test/java/org/apache/tapestry5/integration/app1/App1TestCase.java
index 633b657..6ca5457 100644
--- a/tapestry-core/src/test/java/org/apache/tapestry5/integration/app1/App1TestCase.java
+++ b/tapestry-core/src/test/java/org/apache/tapestry5/integration/app1/App1TestCase.java
@@ -7,7 +7,7 @@ import org.apache.tapestry5.test.TapestryTestConfiguration;
  * Base class for tests that use the src/test/app1 application; this makes it possible
  * to run the test class directly, as it will have the correct configuration.
  */
-@TapestryTestConfiguration(webAppFolder = "src/test/app1", browserStartCommand = "*googlechrome")
+@TapestryTestConfiguration(webAppFolder = "src/test/app1")
 public abstract class App1TestCase extends TapestryCoreTestCase
 {
 }

http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/c1c2d0bb/tapestry-core/src/test/java/org/apache/tapestry5/integration/app1/BeanEditorTests.java
----------------------------------------------------------------------
diff --git a/tapestry-core/src/test/java/org/apache/tapestry5/integration/app1/BeanEditorTests.java b/tapestry-core/src/test/java/org/apache/tapestry5/integration/app1/BeanEditorTests.java
index 3dd1e69..b926736 100644
--- a/tapestry-core/src/test/java/org/apache/tapestry5/integration/app1/BeanEditorTests.java
+++ b/tapestry-core/src/test/java/org/apache/tapestry5/integration/app1/BeanEditorTests.java
@@ -24,7 +24,7 @@ import org.testng.annotations.Test;
  * Tests for the {@link BeanEditor} component, often embedded inside
  * a {@link BeanEditForm} component.
  */
-@TapestryTestConfiguration(webAppFolder = "src/test/app1", browserStartCommand = "*googlechrome")
+@TapestryTestConfiguration(webAppFolder = "src/test/app1")
 @Test
 public class BeanEditorTests extends App1TestCase
 {