Skip to content
This repository has been archived by the owner on Jul 7, 2023. It is now read-only.

Commit

Permalink
fix jshint error
Browse files Browse the repository at this point in the history
  • Loading branch information
fyockm committed Sep 15, 2014
1 parent 582eb48 commit f456939
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions packages/users/server/tests/users.js
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ describe('<Unit Test>', function() {
});
});

}),
});

// source: http://en.wikipedia.org/wiki/Email_address
describe('Test Email Validations', function() {
Expand All @@ -220,7 +220,7 @@ describe('<Unit Test>', function() {
_user.remove(function() {
should.exist(err);
done();
});
});
} else {
should.exist(err);
done();
Expand Down Expand Up @@ -252,7 +252,7 @@ describe('<Unit Test>', function() {
_user.remove(function() {
should.exist(err);
done();
});
});
} else {
should.exist(err);
done();
Expand All @@ -268,7 +268,7 @@ describe('<Unit Test>', function() {
_user.remove(function() {
should.exist(err);
done();
});
});
} else {
should.exist(err);
done();
Expand All @@ -284,7 +284,7 @@ describe('<Unit Test>', function() {
_user.remove(function() {
should.exist(err);
done();
});
});
} else {
should.exist(err);
done();
Expand All @@ -300,7 +300,7 @@ describe('<Unit Test>', function() {
_user.remove(function() {
should.exist(err);
done();
});
});
} else {
should.exist(err);
done();
Expand All @@ -316,7 +316,7 @@ describe('<Unit Test>', function() {
_user.remove(function() {
should.exist(err);
done();
});
});
} else {
should.exist(err);
done();
Expand All @@ -332,7 +332,7 @@ describe('<Unit Test>', function() {
_user.remove(function() {
should.exist(err);
done();
});
});
} else {
should.exist(err);
done();
Expand All @@ -348,7 +348,7 @@ describe('<Unit Test>', function() {
_user.remove(function() {
should.not.exist(err);
done();
});
});
} else {
should.not.exist(err);
done();
Expand All @@ -364,7 +364,7 @@ describe('<Unit Test>', function() {
_user.remove(function() {
should.not.exist(err);
done();
});
});
} else {
should.not.exist(err);
done();
Expand All @@ -380,7 +380,7 @@ describe('<Unit Test>', function() {
_user.remove(function() {
should.not.exist(err);
done();
});
});
} else {
should.not.exist(err);
done();
Expand Down

0 comments on commit f456939

Please sign in to comment.