Skip to content

Commit

Permalink
Fix indentatation
Browse files Browse the repository at this point in the history
  • Loading branch information
0candy committed Oct 31, 2016
1 parent 811ac75 commit f84fa6b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/role.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,8 @@ describe('role model', function() {
assert(!err && yes);
});

Album.create({ name: 'Album 1', userId: user.id, customerId: user2.id }, function(err, album1) {
Album.create({ name: 'Album 1', userId: user.id, customerId: user2.id },
function(err, album1) {
var role = { principalType: ACL.USER, principalId: user.id, model: Album, id: album1.id };
Role.isInRole(Role.OWNER, role, function(err, yes) {
assert(!err && yes);
Expand Down

0 comments on commit f84fa6b

Please sign in to comment.