test(aio): fix typos (repoSlag --> repoSlug)

This commit is contained in:
Georgios Kalpakas 2017-02-27 11:36:12 +02:00 committed by Chuck Jazdzewski
parent 9df9bdc0f5
commit 8a8d4fe24f
3 changed files with 3 additions and 3 deletions

View File

@ -18,7 +18,7 @@ describe('BuildCleaner', () => {
});
it('should throw if \'repoSlag\' is empty', () => {
it('should throw if \'repoSlug\' is empty', () => {
expect(() => new BuildCleaner('/foo/bar', '')).toThrowError('Missing required parameter \'repoSlug\'!');
});

View File

@ -13,7 +13,7 @@ describe('GithubApi', () => {
describe('constructor()', () => {
it('should throw if \'repoSlag\' is not defined', () => {
it('should throw if \'repoSlug\' is not defined', () => {
expect(() => new GithubApi('', '12345')).toThrowError('Missing required parameter \'repoSlug\'!');
});

View File

@ -17,7 +17,7 @@ describe('GithubPullRequests', () => {
});
it('should throw if \'repoSlag\' is not defined', () => {
it('should throw if \'repoSlug\' is not defined', () => {
expect(() => new GithubPullRequests('', '12345')).toThrowError('Missing required parameter \'repoSlug\'!');
});