Skip to content
This repository has been archived by the owner on Apr 3, 2023. It is now read-only.

Commit

Permalink
chore: fix typo (#31)
Browse files Browse the repository at this point in the history
  • Loading branch information
gao-sun authored Nov 23, 2022
1 parent 22c08ab commit 3d125b1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/connector-aliyun-dm/src/utils.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ describe('getSignature', () => {
});

describe('request', () => {
it('should call axios.post with extended params', async () => {
it('should call got.post with extended params', async () => {
const parameters = mockedParameters;
await request('http://test.endpoint.com', parameters, 'testsecret');
const calledData = (got.post as jest.MockedFunction<typeof got.post>).mock.calls[0];
Expand Down
2 changes: 1 addition & 1 deletion packages/connector-aliyun-sms/src/utils.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ describe('getSignature', () => {
});

describe('request', () => {
it('should call axios.post with extended params', async () => {
it('should call got.post with extended params', async () => {
const parameters = mockedParameters;
await request('http://test.endpoint.com', parameters, 'testsecret');
const calledData = (got.post as jest.MockedFunction<typeof got.post>).mock.calls[0];
Expand Down

0 comments on commit 3d125b1

Please sign in to comment.