From 50517c098806eacb5917d2e959b7f680980601fc Mon Sep 17 00:00:00 2001 From: Brent Singh Date: Tue, 9 Jul 2024 00:37:45 +0200 Subject: [PATCH] chore: update misspelling in docs example test (#1227) chore: update misspelling in docs example test --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ffe3871f1..4fcbeaef3 100644 --- a/README.md +++ b/README.md @@ -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({ @@ -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