Skip to content

Commit 9c1132e

Browse files
authored
Merge pull request #325 from pact-foundation/pactflow_camelcase
chore: /s/Pactflow/PactFlow
2 parents 1bbdd37 + 44cda33 commit 9c1132e

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ Example uploading to a Pact Broker
307307
pact-broker publish /path/to/pacts/consumer-provider.json --consumer-app-version 1.0.0 --branch main --broker-base-url https://test.pactflow.io --broker-username someUsername --broker-password somePassword
308308
```
309309

310-
Example uploading to a Pactflow Broker
310+
Example uploading to a PactFlow Broker
311311

312312
```
313313
pact-broker publish /path/to/pacts/consumer-provider.json --consumer-app-version 1.0.0 --branch main --broker-base-url https://test.pactflow.io --broker-token SomeToken
@@ -465,7 +465,7 @@ assert success == 0
465465
# Using a pact broker
466466

467467
- For OSS Pact Broker, use broker_username / broker_password
468-
- For Pactflow Pact Broker, use broker_token
468+
- For PactFlow Pact Broker, use broker_token
469469

470470
success, logs = verifier.verify_with_broker(
471471
# broker_username=PACT_BROKER_USERNAME,

examples/common/sharedfixtures.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
from testcontainers.compose import DockerCompose
66

77

8-
# This fixture is to simulate a managed Pact Broker or Pactflow account.
8+
# This fixture is to simulate a managed Pact Broker or PactFlow account.
99
# For almost all purposes outside this example, you will want to use a real
1010
# broker. See https://github.com/pact-foundation/pact_broker for further details.
1111
@pytest.fixture(scope="session", autouse=True)

examples/consumer/tests/consumer/test_user_consumer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
# If publishing the Pact(s), they will be submitted to the Pact Broker here.
1616
# For the purposes of this example, the broker is started up as a fixture defined
17-
# in conftest.py. For normal usage this would be self-hosted or using Pactflow.
17+
# in conftest.py. For normal usage this would be self-hosted or using PactFlow.
1818
PACT_BROKER_URL = "http://localhost"
1919
PACT_BROKER_USERNAME = "pactbroker"
2020
PACT_BROKER_PASSWORD = "pactbroker"

examples/fastapi_provider/tests/provider/test_provider.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111

1212
# For the purposes of this example, the broker is started up as a fixture defined
13-
# in conftest.py. For normal usage this would be self-hosted or using Pactflow.
13+
# in conftest.py. For normal usage this would be self-hosted or using PactFlow.
1414
PACT_BROKER_URL = "http://localhost"
1515
PACT_BROKER_USERNAME = "pactbroker"
1616
PACT_BROKER_PASSWORD = "pactbroker"

examples/flask_provider/tests/provider/test_provider.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
logging.basicConfig(level=logging.INFO)
1111

1212
# For the purposes of this example, the broker is started up as a fixture defined
13-
# in conftest.py. For normal usage this would be self-hosted or using Pactflow.
13+
# in conftest.py. For normal usage this would be self-hosted or using PactFlow.
1414
PACT_BROKER_URL = "http://localhost"
1515
PACT_BROKER_USERNAME = "pactbroker"
1616
PACT_BROKER_PASSWORD = "pactbroker"

0 commit comments

Comments
 (0)