From 95971618ca986a810b3b03d9469d9cd3f0c1ba69 Mon Sep 17 00:00:00 2001 From: Jocelyn Fiat Date: Mon, 24 Feb 2014 22:07:24 +0100 Subject: [PATCH] Fixed autotests cases compilation of http_authorization library. --- .../http_authorization/testing/http_authorization_tests.e | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/server/authentication/http_authorization/testing/http_authorization_tests.e b/library/server/authentication/http_authorization/testing/http_authorization_tests.e index c6cdcfec..5308140f 100644 --- a/library/server/authentication/http_authorization/testing/http_authorization_tests.e +++ b/library/server/authentication/http_authorization/testing/http_authorization_tests.e @@ -39,7 +39,7 @@ feature -- Impl check_basic_auth_for_login_password (u,p: READABLE_STRING_32; a_title: READABLE_STRING_8) local h: HTTP_AUTHORIZATION - l_auth: READABLE_STRING_8 + l_auth: detachable READABLE_STRING_8 do create h.make_basic_auth (u, p) assert (a_title + ":login", attached h.login as l_login and then l_login.same_string (u))