From: Karl O. Pinc Date: Mon, 5 Aug 2024 17:49:42 +0000 (-0500) Subject: Use proper boolean values instead of string representations X-Git-Url: https://papio.biology.duke.edu/gitweb/?a=commitdiff_plain;h=eb477b9b0cbc1971a7e8e9a51d741aab41a18e2c;p=pgwui_server Use proper boolean values instead of string representations --- diff --git a/tests/test_pgwui_server_integration.py b/tests/test_pgwui_server_integration.py index 66b20d1..02c7176 100644 --- a/tests/test_pgwui_server_integration.py +++ b/tests/test_pgwui_server_integration.py @@ -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': '/'},