Skip to content

Commit

Permalink
Update tests, bump base dep
Browse files Browse the repository at this point in the history
  • Loading branch information
rhyslbw committed Sep 26, 2017
1 parent f79ee08 commit fa1b914
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Package.onUse(function(api) {
api.use([
'ecmascript',
'stevezhu:[email protected]',
'space:[email protected].3'
'space:[email protected].4'
]);

api.addFiles([
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/module.integration.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ describe("Space.logging.WinstonAdapter", () => {
}
}
},
requiredModules: ['Space.logging.Winston'],
requiredModules: ['Space.logging.Winston']
});
const app = new TestApp();
app.start();
Expand Down
4 changes: 2 additions & 2 deletions tests/unit/winston-adapter.unit.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ describe("Space.Logger.WinstonAdapter", () => {
this.winston.Logger = sinon.spy(Logger);
});

it('extends Space.Logger.Adapter', () => {
expect(Space.Logger.WinstonAdapter).to.extend(Space.Logger.Adapter);
it('extends Space.Logger.LoggingAdapter', () => {
expect(Space.Logger.WinstonAdapter).to.extend(Space.Logger.LoggingAdapter);
});

describe('construction', () => {
Expand Down

0 comments on commit fa1b914

Please sign in to comment.