Skip to content

Commit

Permalink
docs: fix typos (#922)
Browse files Browse the repository at this point in the history
  • Loading branch information
PabloCastellano authored Jun 26, 2024
1 parent 903bbdc commit 154dae8
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions test/unit/utils/stamp.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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)
})
})
Expand Down

0 comments on commit 154dae8

Please sign in to comment.