Skip to content

Commit

Permalink
check correct field
Browse files Browse the repository at this point in the history
  • Loading branch information
BasvRossem committed Jan 27, 2025
1 parent a12fe91 commit 217c2cf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/programmatic/god.mocha.js
Original file line number Diff line number Diff line change
Expand Up @@ -297,9 +297,9 @@ describe('God', function() {
procs.length.should.be.equal(processes.length);
// Monitoring memory and CPU no longer works
procs[0].monit.should.be.deepEqual({memory: 0, cpu: 0});
procs[1].monit.memory.be.deepEqual({memory: 0, cpu: 0});
procs[1].monit.should.be.deepEqual({memory: 0, cpu: 0});
procs[2].monit.should.be.deepEqual({memory: 0, cpu: 0});
procs[3].monit.memory.be.deepEqual({memory: 0, cpu: 0});
procs[3].monit.should.be.deepEqual({memory: 0, cpu: 0});
f.kill()
done()
})
Expand Down

0 comments on commit 217c2cf

Please sign in to comment.