Rename test variables

This commit is contained in:
IAvecilla 2026-04-21 16:00:34 -03:00
parent aa61831a14
commit 54c2261214
No known key found for this signature in database
2 changed files with 8 additions and 7 deletions

View file

@ -100,8 +100,8 @@ describe('estimateRows', () => {
it('keeps intraword underscores when sizing snake_case identifiers', () => {
const w = 80
const snake = 'look at recover_with_credential_pool now'
const plain = 'look at recover with credential pool now'
const snake = 'look at test_case_with_underscores now'
const plain = 'look at test case with underscores now'
expect(estimateRows(snake, w)).toBe(estimateRows(plain, w))
})