Skip to content

Commit

Permalink
Merge pull request #463 from wazuh/3.11-4224-fix-restart_agents_by_group
Browse files Browse the repository at this point in the history
Fix for agents mocha tests
  • Loading branch information
crd1985 authored Nov 13, 2019
2 parents 244e83a + a1006a5 commit 3af8385
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/test_agents.js
Original file line number Diff line number Diff line change
Expand Up @@ -3110,7 +3110,7 @@ describe('Agents', function() {
if (err) return done(err);

res.body.should.have.properties(['error', 'message']);
res.body.error.should.equal(1710);
res.body.error.should.equal(1750);
done();
});
});
Expand All @@ -3125,7 +3125,7 @@ describe('Agents', function() {
if (err) return done(err);

res.body.should.have.properties(['error', 'message']);
res.body.error.should.equal(1732);
res.body.error.should.equal(1750);
done();
});
});
Expand Down

0 comments on commit 3af8385

Please sign in to comment.