projects
/
pgwui_server
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
25a88f0
)
Use proper boolean values instead of string representations
author
Karl O. Pinc
<kop@karlpinc.com>
Mon, 5 Aug 2024 17:49:42 +0000
(12:49 -0500)
committer
Karl O. Pinc
<kop@karlpinc.com>
Mon, 5 Aug 2024 17:49:42 +0000
(12:49 -0500)
tests/test_pgwui_server_integration.py
patch
|
blob
|
history
diff --git
a/tests/test_pgwui_server_integration.py
b/tests/test_pgwui_server_integration.py
index 66b20d1d38a0c6b912ad5fd9315a79799e80b382..02c7176e66599942e2bd0b3f89bf50ef2fb02ff0 100644
(file)
--- 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': '/'},