Skip to content

Commit

Permalink
fix(mFactor): origin
Browse files Browse the repository at this point in the history
  • Loading branch information
SidMorad committed Oct 6, 2023
1 parent f86cf6c commit f87aec3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/mfactor/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ describe('mFactor resource', () => {
},
],
}
const scope = nock('https://mfactor.ir')
const scope = nock('https://mfactor.taakcloud.com')
.post('/api/v1/factor/create', cmd)
.reply(200, {})

Expand Down
2 changes: 1 addition & 1 deletion src/mfactor/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {
} from './types'

export class mFactor extends AppBase {
public static readonly basePath = 'https://mfactor.ir'
public static readonly basePath = 'https://mfactor.taakcloud.com'
createFactor(command: FactorCreateCommand): Promise<TaakResponse> {
return this.request<FactorDTO>(
'/api/v1/factor/create',
Expand Down

0 comments on commit f87aec3

Please sign in to comment.