From 154dae86d5c64809e03f09e890105a27fd41007e Mon Sep 17 00:00:00 2001 From: Pablo Castellano Date: Wed, 26 Jun 2024 19:00:25 +0200 Subject: [PATCH] docs: fix typos (#922) --- test/unit/utils/stamp.spec.ts | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/test/unit/utils/stamp.spec.ts b/test/unit/utils/stamp.spec.ts index c3d13ae3..e58e299c 100644 --- a/test/unit/utils/stamp.spec.ts +++ b/test/unit/utils/stamp.spec.ts @@ -28,25 +28,25 @@ describe('stamp', () => { }) }) describe('reverse depth', () => { - it('sholud return value 21', () => { + it('should return value 21', () => { expect(Utils.getDepthForCapacity(8)).to.eql(21) }) - it('sholud return value 20', () => { + it('should return value 20', () => { expect(Utils.getDepthForCapacity(4)).to.eql(20) }) - it('sholud return value 19', () => { + it('should return value 19', () => { expect(Utils.getDepthForCapacity(2)).to.eql(19) }) - it('sholud return value 18', () => { + it('should return value 18', () => { expect(Utils.getDepthForCapacity(1)).to.eql(18) }) - it('sholud return value 20 for 2.3', () => { + it('should return value 20 for 2.3', () => { expect(Utils.getDepthForCapacity(2.3)).to.eql(20) }) - it('sholud return value 18 for 0', () => { + it('should return value 18 for 0', () => { expect(Utils.getDepthForCapacity(0)).to.eql(18) }) - it('sholud return value 18 for negative value', () => { + it('should return value 18 for negative value', () => { expect(Utils.getDepthForCapacity(-3)).to.eql(18) }) })