From a388faf1d8d1188a291b9a74e718e578ba69602a Mon Sep 17 00:00:00 2001 From: Maxime Alves LIRMM Date: Mon, 28 Feb 2022 09:58:47 +0100 Subject: [PATCH] [testing] add "secret" and "production" variable to test_domain configuration --- halfapi/testing/test_domain.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/halfapi/testing/test_domain.py b/halfapi/testing/test_domain.py index c30a85c..5732a5f 100644 --- a/halfapi/testing/test_domain.py +++ b/halfapi/testing/test_domain.py @@ -43,6 +43,8 @@ class TestDomain(TestCase): # HTTP self.halfapi_conf = { + 'secret': 'testsecret', + 'production': False, 'domain': {} }