From dd7b869a121878d511b5891a3e038c06fc018145 Mon Sep 17 00:00:00 2001 From: Ryan Baxter Date: Mon, 10 Dec 2018 12:30:03 -0500 Subject: [PATCH] Uncommenting assert --- .../openfeign/hystrix/security/HystrixSecurityTests.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-cloud-openfeign-core/src/test/java/org/springframework/cloud/openfeign/hystrix/security/HystrixSecurityTests.java b/spring-cloud-openfeign-core/src/test/java/org/springframework/cloud/openfeign/hystrix/security/HystrixSecurityTests.java index e741e995..4d41dff8 100644 --- a/spring-cloud-openfeign-core/src/test/java/org/springframework/cloud/openfeign/hystrix/security/HystrixSecurityTests.java +++ b/spring-cloud-openfeign-core/src/test/java/org/springframework/cloud/openfeign/hystrix/security/HystrixSecurityTests.java @@ -91,9 +91,9 @@ public class HystrixSecurityTests { .as("Username should have been intercepted by feign interceptor.") .isEqualTo(username); - /* FIXME: 2.1.0 assertThat(customConcurrenyStrategy.isHookCalled()) + assertThat(customConcurrenyStrategy.isHookCalled()) .as("Custom hook should have been called.") - .isTrue();*/ + .isTrue(); } public static HttpHeaders createBasicAuthHeader(final String username,