From 4278cc3443276d61bd77168dd6a975861f49b45c Mon Sep 17 00:00:00 2001 From: Guillaume Ayoub Date: Sat, 4 Mar 2017 14:25:01 +0100 Subject: [PATCH] Set htpasswd encryption type to plain in tests --- radicale/tests/test_base.py | 1 + 1 file changed, 1 insertion(+) diff --git a/radicale/tests/test_base.py b/radicale/tests/test_base.py index 381938fb..e9360b5d 100644 --- a/radicale/tests/test_base.py +++ b/radicale/tests/test_base.py @@ -770,6 +770,7 @@ class BaseRequestsMixIn: """Test if server sends authentication request.""" self.configuration.set("auth", "type", "htpasswd") self.configuration.set("auth", "htpasswd_filename", os.devnull) + self.configuration.set("auth", "htpasswd_encryption", "plain") self.configuration.set("rights", "type", "owner_only") self.application = Application(self.configuration, self.logger) status, headers, answer = self.request("MKCOL", "/user/")