Skip to content

Commit

Permalink
Merge pull request #2917 from LiskHQ/2910-bump_eslint-config-lisk-bas…
Browse files Browse the repository at this point in the history
…e_version

Bump eslint-config-lisk-base devDependecy to 1.1.0 - Closes #2910
  • Loading branch information
MaciejBaj committed Feb 20, 2019
2 parents 01c0125 + e53a7e8 commit 12e0fdc
Show file tree
Hide file tree
Showing 5 changed files with 40 additions and 88 deletions.
2 changes: 1 addition & 1 deletion .eslintrc.json
@@ -1,6 +1,6 @@
{
"extends": ["lisk-base"],
"plugins": ["mocha", "chai-expect"],
"plugins": ["chai-expect"],
"rules": {
"camelcase": "off",
"chai-expect/missing-assertion": "error",
Expand Down
Expand Up @@ -443,7 +443,7 @@ describe('system test (blocks) - process onReceiveBlock()', () => {
});

describe(`when received block is from same round and ${BLOCK_SLOT_WINDOW -
1} slots in the past`, async () => {
1} slots in the past`, () => {
let inSlotsWindowBlock;

beforeEach(() => {
Expand Down
4 changes: 2 additions & 2 deletions framework/test/integration/blocks/verify/verify.js
Expand Up @@ -675,7 +675,7 @@ describe('blocks/verify', () => {
});

describe(`for slot number ${BLOCK_SLOT_WINDOW +
1} slots in the past`, async () => {
1} slots in the past`, () => {
let dummyBlock;

before(done => {
Expand Down Expand Up @@ -770,7 +770,7 @@ describe('blocks/verify', () => {
});

describe(`when onNewBlock function is called ${BLOCK_SLOT_WINDOW *
2} times`, async () => {
2} times`, () => {
let recentNBlockIds;
let olderThanNBlockIds;

Expand Down

0 comments on commit 12e0fdc

Please sign in to comment.