Skip to content

Commit

Permalink
fix: provider verification should use publish_verification_results
Browse files Browse the repository at this point in the history
  • Loading branch information
neringaalt committed Nov 3, 2023
1 parent 03462ca commit 4cdb8dc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/tests/test_01_provider_fastapi.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ def test_against_broker(broker: URL, verifier: Verifier) -> None:
"""
code, _ = verifier.verify_with_broker(
broker_url=str(broker),
published_verification_results=True,
publish_verification_results=True,
provider_states_setup_url=str(PROVIDER_URL / "_pact" / "provider_states"),
)

Expand Down
2 changes: 1 addition & 1 deletion examples/tests/test_01_provider_flask.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ def test_against_broker(broker: URL, verifier: Verifier) -> None:
"""
code, _ = verifier.verify_with_broker(
broker_url=str(broker),
published_verification_results=True,
publish_verification_results=True,
provider_states_setup_url=str(PROVIDER_URL / "_pact" / "provider_states"),
)

Expand Down

0 comments on commit 4cdb8dc

Please sign in to comment.