mirror of
https://github.com/NodeBB/NodeBB.git
synced 2026-07-06 06:08:53 +02:00
ESlint keyword-spacing, no-multi-spaces
This commit is contained in:
@@ -366,7 +366,7 @@ describe('Post\'s', function () {
|
||||
|
||||
it('should error with too many tags', function (done) {
|
||||
var tags = [];
|
||||
for(var i = 0; i < meta.config.maximumTagsPerTopic + 1; i += 1) {
|
||||
for (var i = 0; i < meta.config.maximumTagsPerTopic + 1; i += 1) {
|
||||
tags.push('tag' + i);
|
||||
}
|
||||
socketPosts.edit({uid: voterUid}, {pid: pid, content: 'edited post content', tags: tags}, function (err) {
|
||||
|
||||
Reference in New Issue
Block a user