[Accessibility] Fix typo in parse number tests (#48644)

* Fix "seperator" typo

* Add changelog file

---------

Co-authored-by: Daniel W. Robert <danielwrobert@users.noreply.github.com>
This commit is contained in:
Gabriel Manussakis 2024-08-23 20:59:11 -03:00 committed by GitHub
parent 4298e572c4
commit 099d0a63a0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 6 additions and 2 deletions

View File

@ -0,0 +1,4 @@
Significance: minor
Type: tweak
Fix typos in parse number tests

View File

@ -59,7 +59,7 @@ describe( 'parseNumber', () => {
expect( parseNumber( config, '12.345,679' ) ).toBe( '12345.679' );
} );
it( 'supports empty string as the thousandSeperator', () => {
it( 'supports empty string as the thousandSeparator', () => {
const config = {
decimalSeparator: ',',
thousandSeparator: '',
@ -68,7 +68,7 @@ describe( 'parseNumber', () => {
expect( parseNumber( config, '12345,679' ) ).toBe( '12345.679' );
} );
it( 'supports empty string as the decimalSeperator', () => {
it( 'supports empty string as the decimalSeparator', () => {
const config = {
decimalSeparator: '',
thousandSeparator: ',',