You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by re...@apache.org on 2022/09/26 00:57:54 UTC

[cxf] branch main updated: Fixing DigestAuthSupplierSpringTest test case

This is an automated email from the ASF dual-hosted git repository.

reta pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/cxf.git


The following commit(s) were added to refs/heads/main by this push:
     new f4c7785fd8 Fixing DigestAuthSupplierSpringTest test case
f4c7785fd8 is described below

commit f4c7785fd89a6709608c3fcd8ab31f3f05065eb4
Author: Andriy Redko <dr...@gmail.com>
AuthorDate: Sun Sep 25 20:57:34 2022 -0400

    Fixing DigestAuthSupplierSpringTest test case
---
 .../org/apache/cxf/systest/http/auth/DigestAuthSupplierSpringTest.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/systests/transports/src/test/java/org/apache/cxf/systest/http/auth/DigestAuthSupplierSpringTest.java b/systests/transports/src/test/java/org/apache/cxf/systest/http/auth/DigestAuthSupplierSpringTest.java
index 6611f57386..6f9d290188 100644
--- a/systests/transports/src/test/java/org/apache/cxf/systest/http/auth/DigestAuthSupplierSpringTest.java
+++ b/systests/transports/src/test/java/org/apache/cxf/systest/http/auth/DigestAuthSupplierSpringTest.java
@@ -81,7 +81,7 @@ public class DigestAuthSupplierSpringTest {
 
         static final String RESPONSE = "Hi!";
 
-        @GetMapping(produces = MediaType.TEXT_PLAIN)
+        @GetMapping(produces = MediaType.TEXT_PLAIN, value = "/")
         public String get() {
             return "Hi!";
         }