Skip to content

Commit

Permalink
syntax styling fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
furkanmustafa committed Jul 4, 2016
1 parent 7c24098 commit 8078ced
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/unit/base-mixins/subscriptions.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import chaiAsPromised from "chai-as-promised";
import sinon from "sinon";
import sinonChai from "sinon-chai";
import EventEmitter from "wolfy87-eventemitter";
import assign from "lodash.assign"
import assign from "lodash.assign";

import * as subscriptionsMixin from "base-mixins/subscriptions";

Expand Down Expand Up @@ -214,8 +214,8 @@ describe("`subscriptions` mixin", () => {
var idCounter = 0;
const instance = {
ddp: assign(new EventEmitter(), {
sub: sinon.spy(function(name, params, id) {
return id || ++idCounter
sub: sinon.spy(function (name, params, id) {
return id || ++idCounter;
}),
status: false // something that is not "connected"
}),
Expand Down

0 comments on commit 8078ced

Please sign in to comment.