Skip to content

Commit

Permalink
chore: update misspelling in docs example test (#1227)
Browse files Browse the repository at this point in the history
chore: update misspelling in docs example test
  • Loading branch information
BrentGTR authored Jul 8, 2024
1 parent 6e3fd47 commit 50517c0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ const provider = new PactV3({
provider: 'MyProvider',
});

// API Client that will fetch dogs from the Dog API
// API Client that will fetch dogs from the Dog API
// This is the target of our Pact test
public getMeDogs = (from: string): AxiosPromise => {
return axios.request({
Expand All @@ -152,7 +152,7 @@ const dogExample = { dog: 1 };
const EXPECTED_BODY = MatchersV3.eachLike(dogExample);

describe('GET /dogs', () => {
it('returns an HTTP 200 and a list of docs', () => {
it('returns an HTTP 200 and a list of dogs', () => {
// Arrange: Setup our expected interactions
//
// We use Pact to mock out the backend API
Expand Down

0 comments on commit 50517c0

Please sign in to comment.