Skip to content

Commit

Permalink
fix: correct linter violations
Browse files Browse the repository at this point in the history
  • Loading branch information
knksmith57 committed Jan 19, 2017
1 parent 825d79d commit e4cf186
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/index.test.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
var AWS = require('aws-sdk')
var AWS = require('aws-sdk');
var test = require('tape');
var Dyno = require('..');

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

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

Expand Down

0 comments on commit e4cf186

Please sign in to comment.