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 22:14:37 UTC

git commit: Only stop the runner if it started

Updated Branches:
  refs/heads/master 808a73f28 -> 33cc7f2e6


Only stop the runner if it started


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

Branch: refs/heads/master
Commit: 33cc7f2e6a082d211c0c84110526ad95d69fed2d
Parents: 808a73f
Author: Howard M. Lewis Ship <hl...@apache.org>
Authored: Mon Nov 4 13:12:05 2013 -0800
Committer: Howard M. Lewis Ship <hl...@apache.org>
Committed: Mon Nov 4 13:14:12 2013 -0800

----------------------------------------------------------------------
 .../src/test/groovy/t5/webresources/tests/WebResourcesSpec.groovy | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/33cc7f2e/tapestry-webresources/src/test/groovy/t5/webresources/tests/WebResourcesSpec.groovy
----------------------------------------------------------------------
diff --git a/tapestry-webresources/src/test/groovy/t5/webresources/tests/WebResourcesSpec.groovy b/tapestry-webresources/src/test/groovy/t5/webresources/tests/WebResourcesSpec.groovy
index 62f6338..2757424 100644
--- a/tapestry-webresources/src/test/groovy/t5/webresources/tests/WebResourcesSpec.groovy
+++ b/tapestry-webresources/src/test/groovy/t5/webresources/tests/WebResourcesSpec.groovy
@@ -16,7 +16,8 @@ class WebResourcesSpec extends GebReportingSpec {
     }
 
     def cleanupSpec() {
-        runner.stop()
+        if (runner != null)
+            runner.stop()
     }
 
     def "CoffeeScript compilation"() {