Skip to content

Commit

Permalink
correct capitalization in status test
Browse files Browse the repository at this point in the history
  • Loading branch information
AccaliaDeElementia committed Jan 26, 2016
1 parent 975c0ff commit d9671bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/lib/commands/statusTest.js
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ describe('status', () => {
});
describe('memoryUsage', () => {
it('should return the correct values', () => {
const expected = 'Memory usage: 1 kB free out of 2 kB';
const expected = 'Memory usage: 1 KB free out of 2 KB';
sandbox.stub(os, 'freemem', () => 1024);
sandbox.stub(os, 'totalmem', () => 2048);
expect(status.internals.memoryUsage()).to.be.equal(expected);
Expand Down

0 comments on commit d9671bd

Please sign in to comment.