mirror of
https://github.com/sudoxnym/habitica-self-host.git
synced 2026-07-21 21:34:15 +00:00
Add missing semi-colons
This commit is contained in:
parent
39930ecc29
commit
41763d3b78
1 changed files with 2 additions and 2 deletions
|
|
@ -49,7 +49,7 @@ describe('Groups Controller', function() {
|
|||
});
|
||||
|
||||
expect(scope.isMemberOfGroup(user._id, guild)).to.be.ok;
|
||||
expect(myGuilds).to.be.called
|
||||
expect(myGuilds).to.be.called;
|
||||
});
|
||||
|
||||
it('does not return true if guild is not included in myGuilds call', function(){
|
||||
|
|
@ -63,7 +63,7 @@ describe('Groups Controller', function() {
|
|||
});
|
||||
|
||||
expect(scope.isMemberOfGroup(user._id, guild)).to.not.be.ok;
|
||||
expect(myGuilds).to.be.called
|
||||
expect(myGuilds).to.be.called;
|
||||
});
|
||||
});
|
||||
});
|
||||
|
|
|
|||
Loading…
Reference in a new issue