fix(lint): add missing whitespace for curlies

This commit is contained in:
Sabe Jones
2024-06-28 23:34:32 -05:00
parent f357750d88
commit f506b840ed
2 changed files with 2 additions and 2 deletions

View File

@@ -57,7 +57,7 @@ describe('GET /groups/:groupId/chat', () => {
}));
// Creation API is shut down, we need to simulate an extant public group
await Group.updateOne({ _id: group._id }, { $set: { privacy: 'public' }, $unset: { 'purchased.plan': 1 }}).exec();
await Group.updateOne({ _id: group._id }, { $set: { privacy: 'public' }, $unset: { 'purchased.plan': 1 } }).exec();
});
it('returns error if user attempts to fetch a sunset Guild', async () => {