Skip to content

Commit 1790815

Browse files
Merge pull request #12 from explore-node-js/eugene-matvejev-patch-2
update byte_flag_calculator.test.js
2 parents da73b64 + 3cb3f48 commit 1790815

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

tests/byte_flag_calculator.test.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ describe(`byte flag calculator`, () => {
1212
].forEach(el => {
1313
it(` - expected true as ${el.flag} bytes are presented in ${el.flags}`, () => {
1414
expect(calc.hasBytes(el.flags, el.flag)).toBe(true);
15-
})
15+
});
1616
});
1717

1818
[
@@ -24,7 +24,7 @@ describe(`byte flag calculator`, () => {
2424
].forEach(el => {
2525
it(` - expected false as ${el.flag} bytes aren't presented in ${el.flags}`, () => {
2626
expect(calc.hasBytes(el.flags, el.flag)).toBe(false);
27-
})
27+
});
2828
});
2929
});
3030

@@ -38,7 +38,7 @@ describe(`byte flag calculator`, () => {
3838
].forEach(el => {
3939
it(` - expected ${el.expected} by adding bytes ${el.flag} to ${el.flags}`, () => {
4040
expect(calc.addBytes(el.flags, el.flag)).toBe(el.expected);
41-
})
41+
});
4242
});
4343
});
4444

@@ -55,8 +55,8 @@ describe(`byte flag calculator`, () => {
5555
].forEach(el => {
5656
it(` - expected ${el.expected} by removing bytes ${el.flag} from ${el.flags}`, () => {
5757
expect(calc.removeBytes(el.flags, el.flag)).toBe(el.expected);
58-
})
58+
});
5959
});
6060
});
6161
});
62-
});
62+
});

0 commit comments

Comments
 (0)