From d9671bd9b65240a5c2bfb80b3a5d4e6e5d314755 Mon Sep 17 00:00:00 2001 From: Accalia de Elementia Date: Tue, 26 Jan 2016 17:20:04 +0000 Subject: [PATCH] correct capitalization in status test --- test/lib/commands/statusTest.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/lib/commands/statusTest.js b/test/lib/commands/statusTest.js index 3478e446..de7d1d19 100644 --- a/test/lib/commands/statusTest.js +++ b/test/lib/commands/statusTest.js @@ -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);