From eb477b9b0cbc1971a7e8e9a51d741aab41a18e2c Mon Sep 17 00:00:00 2001 From: "Karl O. Pinc" Date: Mon, 5 Aug 2024 12:49:42 -0500 Subject: [PATCH] Use proper boolean values instead of string representations --- tests/test_pgwui_server_integration.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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': '/'}, -- 2.34.1