Use proper boolean values instead of string representations
authorKarl O. Pinc <kop@karlpinc.com>
Mon, 5 Aug 2024 17:49:42 +0000 (12:49 -0500)
committerKarl O. Pinc <kop@karlpinc.com>
Mon, 5 Aug 2024 17:49:42 +0000 (12:49 -0500)
tests/test_pgwui_server_integration.py

index 66b20d1d38a0c6b912ad5fd9315a79799e80b382..02c7176e66599942e2bd0b3f89bf50ef2fb02ff0 100644 (file)
@@ -36,8 +36,8 @@ pytestmark = pytest.mark.integrationtest
 
 TEST_SETTINGS = {
     'pgwui': {
-        'validate_hmac': 'False',
-        'dry_run': 'False',
+        'validate_hmac': False,
+        'dry_run': False,
     }
 }
 
@@ -46,9 +46,9 @@ REFERENCE_SETTINGS = {
         'pg_host': '',
         'pg_port': '5432',
         'default_db': 'template1',
-        'autoconfigure': 'True',
-        'dry_run': 'False',
-        'validate_hmac': 'False',
+        'autoconfigure': True,
+        'dry_run': False,
+        'validate_hmac': False,
         # 'home_page': {         # The default
         #      'type': 'URL',
         #      'source': '/'},