diff --git a/hystrix-contrib/hystrix-clj/build.gradle b/hystrix-contrib/hystrix-clj/build.gradle index bcd6c4b85..08eb51760 100644 --- a/hystrix-contrib/hystrix-clj/build.gradle +++ b/hystrix-contrib/hystrix-clj/build.gradle @@ -3,7 +3,7 @@ mavenRepo name: 'clojars', url: 'http://clojars.org/repo' } dependencies { - classpath 'clojuresque:clojuresque:1.5.4' + classpath 'clojuresque:clojuresque:1.5.8' } } apply plugin: 'clojure' diff --git a/hystrix-contrib/hystrix-clj/src/test/clojure/com/netflix/hystrix/core_test.clj b/hystrix-contrib/hystrix-clj/src/test/clojure/com/netflix/hystrix/core_test.clj index d3d8e0b5f..86606d498 100644 --- a/hystrix-contrib/hystrix-clj/src/test/clojure/com/netflix/hystrix/core_test.clj +++ b/hystrix-contrib/hystrix-clj/src/test/clojure/com/netflix/hystrix/core_test.clj @@ -16,16 +16,6 @@ (use-fixtures :each request-context-fixture) -; In the end, reset Hystrix so that Clojuresque will exit after running tests. -(defn hystrix-reset-fixture - [f] - (try - (f) - (finally - (com.netflix.hystrix.Hystrix/reset)))) - -(use-fixtures :once hystrix-reset-fixture) - (deftest test-command-key (testing "returns nil when input is nil" (is (nil? (command-key nil))))