Fix code style

This commit is contained in:
CJ Patoilo 2016-11-22 19:40:59 -03:00
parent 43a5fb3add
commit fc0cceca92
2 changed files with 3 additions and 3 deletions

View File

@ -115,4 +115,4 @@ module.exports = {
casperFlags: [],
debug: false,
port: 3002
}
};

View File

@ -112,7 +112,7 @@ describe('Package', () => {
describe('Ignore', () => {
it(`should be equal`, () => {
it('should be equal', () => {
packages.map((referenceValue, referenceIndex) => {
packages.map((compareValue, compareIndex) => {
if (referenceIndex !== compareIndex) assert(referenceValue.ignore, compareValue.ignore);
@ -124,7 +124,7 @@ describe('Package', () => {
describe('Keywords', () => {
it(`should be equal`, () => {
it('should be equal', () => {
packages.map((referenceValue, referenceIndex) => {
packages.map((compareValue, compareIndex) => {
if (referenceIndex !== compareIndex) assert(referenceValue.keywords, compareValue.keywords);