Skip to content

Commit c7e3a05

Browse files
author
AJ Keller
committed
Fix: lint issues
1 parent e88b405 commit c7e3a05

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: test/openBCIUtilities-test.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1328,14 +1328,14 @@ $$$`);
13281328
it('should not find any v2', function () {
13291329
let buf = new Buffer('AJ Keller is an awesome programmer!\n I know right!');
13301330

1331-
expect(openBCIUtilities.getFirmware(buf)).to.equal(null)
1331+
expect(openBCIUtilities.getFirmware(buf)).to.equal(null);
13321332
});
13331333
it('should not find a v2', function () {
13341334
let buf = new Buffer(`OpenBCI V3 Simulator
13351335
On Board ADS1299 Device ID: 0x12345
13361336
LIS3DH Device ID: 0x38422$$$`);
13371337

1338-
expect(openBCIUtilities.getFirmware(buf)).to.equal(null)
1338+
expect(openBCIUtilities.getFirmware(buf)).to.equal(null);
13391339
});
13401340
it('should find a v2', function () {
13411341
let buf = new Buffer(`OpenBCI V3 Simulator

0 commit comments

Comments
 (0)