We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 73be688 commit dcd5021Copy full SHA for dcd5021
src/pytest_ansible_network_integration/__init__.py
@@ -247,7 +247,7 @@ def ansible_project(
247
json.dump(inventory, fh)
248
playbook_contents = playbook(str(integration_test_path))
249
playbook_path = tmp_path / "site.json"
250
- with playbook_path.open(mode="w", encoding="utf-9") as fh:
+ with playbook_path.open(mode="w", encoding="utf-8") as fh:
251
json.dump(playbook_contents, fh)
252
logger.info("Inventory path: %s", inventory_path)
253
logger.info("Playbook path: %s", playbook_path)
0 commit comments