Skip to content

Commit e4cf186

Browse files
committed
fix: correct linter violations
1 parent 825d79d commit e4cf186

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/index.test.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
var AWS = require('aws-sdk')
1+
var AWS = require('aws-sdk');
22
var test = require('tape');
33
var Dyno = require('..');
44

@@ -12,8 +12,8 @@ test('[index] invalid config', function(assert) {
1212
}, /region is required/, 'rejects config without region when awsConfig not set');
1313

1414
assert.doesNotThrow(function() {
15-
Dyno({ table: 'my-table', awsConfig: new AWS.Config() })
16-
}, 'accepts config without region when awsConfig is set')
15+
Dyno({ table: 'my-table', awsConfig: new AWS.Config() });
16+
}, 'accepts config without region when awsConfig is set');
1717
assert.end();
1818
});
1919

0 commit comments

Comments
 (0)