From d8649e881d42fc7b36b6db796a8c904efed31794 Mon Sep 17 00:00:00 2001 From: "J. Brisbin" Date: Wed, 8 Dec 2010 16:45:26 -0600 Subject: [PATCH] Change path to Riak exe. --- .../data/keyvalue/riak/core/RiakTemplateSpec.groovy | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-data-riak/src/test/groovy/org/springframework/data/keyvalue/riak/core/RiakTemplateSpec.groovy b/spring-data-riak/src/test/groovy/org/springframework/data/keyvalue/riak/core/RiakTemplateSpec.groovy index 56e57bd28..85898e401 100644 --- a/spring-data-riak/src/test/groovy/org/springframework/data/keyvalue/riak/core/RiakTemplateSpec.groovy +++ b/spring-data-riak/src/test/groovy/org/springframework/data/keyvalue/riak/core/RiakTemplateSpec.groovy @@ -39,13 +39,13 @@ class RiakTemplateSpec extends Specification { @Shared def p def setupSpec() { - p = "$riakBin start".execute() + p = "/usr/sbin/riak start".execute() p.waitFor() Thread.sleep(2000) } def cleanupSpec() { - "$riakBin stop".execute() + "/usr/sbin/riak stop".execute() p.waitFor() }