Skip to content

Commit

Permalink
style(rename-file): error-handler to errors
Browse files Browse the repository at this point in the history
  • Loading branch information
galta95 committed Dec 3, 2020
1 parent 16194fa commit 10a8f73
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/api/v6/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {
OwnerMismatchError,
NotAllowedError,
ChangesetAlreadyClosedError,
} from '../../lib/error';
} from '../../lib/errors';
import { ownerMismatch } from '../../lib/constants';
class Apiv6 {
private readonly httpClient: AxiosInstance;
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion tests/unit/apiv6.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import nock = require('nock');

import Apiv6 from '../../src/index';
import { createChangesetEndPoint, closeChangesetEndPoint } from '../../src/lib/endpoints';
import { UnauthorizedError, BadXmlError, ChangesetNotFoundError, ChangesetAlreadyClosedError, OwnerMismatchError } from '../../src/lib/error';
import { UnauthorizedError, BadXmlError, ChangesetNotFoundError, ChangesetAlreadyClosedError, OwnerMismatchError } from '../../src/lib/errors';
import { testConf } from './config/tests-config';
const { baseUrl, username, password, changeSetNumber } = testConf;

Expand Down

0 comments on commit 10a8f73

Please sign in to comment.