enforce indentation in specs

This commit is contained in:
Vladimir Agafonkin
2015-09-25 13:55:37 +03:00
parent 301473ad4d
commit cfdbd10431
17 changed files with 145 additions and 153 deletions

View File

@ -2,8 +2,8 @@ describe("Class", function () {
describe("#extend", function () {
var Klass,
constructor,
method;
constructor,
method;
beforeEach(function () {
constructor = sinon.spy();
@ -131,7 +131,7 @@ describe("Class", function () {
it("inherits constructor hooks", function () {
var spy1 = sinon.spy(),
spy2 = sinon.spy();
spy2 = sinon.spy();
var Klass2 = Klass.extend({});
@ -146,7 +146,7 @@ describe("Class", function () {
it("does not call child constructor hooks", function () {
var spy1 = sinon.spy(),
spy2 = sinon.spy();
spy2 = sinon.spy();
var Klass2 = Klass.extend({});