Skip to content

Commit

Permalink
update config settings
Browse files Browse the repository at this point in the history
  • Loading branch information
woodac committed Dec 18, 2024
1 parent b05c4ab commit b0fabf6
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tests/test_utils/test_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -631,7 +631,7 @@ def test_survey_validate_config(self):
def test_validate_pnp_config(self):

input_config = {
"survey":{ "survey_type": "PNP"},
"survey": { "survey_type": "PNP"},
"global": {
"output_ni_full_responses": True,
"output_mapping_ni_qa": True,
Expand All @@ -643,14 +643,14 @@ def test_validate_pnp_config(self):

}
results = validate_pnp_config(input_config)
assert results == ("survey":{ "survey_type": "PNP"},
assert results ==({"survey" : { "survey_type": "PNP"},
"global": {
"output_ni_full_responses": False,
"output_mapping_ni_qa": False,
"output_short_form": False,
"load_ni_data": False,
"output_ni_sas": False,
"output_intram_by_pg_gb": False
},
( "PNP config validation returned the expected config values."
)
}
})
("PNP config validation returned the expected config values.")

0 comments on commit b0fabf6

Please sign in to comment.