From d94994719b6fb1917aae355957bb15b30fdf1e1b Mon Sep 17 00:00:00 2001 From: Florian Zschocke Date: Mon, 11 Nov 2019 22:03:32 +0100 Subject: [PATCH] Update test file with MD hashed password With the feature of passwords getting automatically upgraded to a hashed version, the default `admin` password in the test-users file will get stored as MD5 hashed during test execution. Commit this change, so that the file isn't always showing up as changed. --- src/test/config/test-users.conf | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/test/config/test-users.conf b/src/test/config/test-users.conf index 4361410c..12f53a9e 100644 --- a/src/test/config/test-users.conf +++ b/src/test/config/test-users.conf @@ -1,5 +1,6 @@ + [user "admin"] - password = admin + password = MD5:21232f297a57a5a743894a0e4a801fc3 cookie = dd94709528bb1c83d08f3088d4043f4742891f4f accountType = LOCAL emailMeOnMyTicketChanges = true -- 2.39.5