File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -159,7 +159,7 @@ describe('dom-to-react parser', () => {
159
159
) ;
160
160
} ) ;
161
161
162
- it ( 'does not modify keys for replacement if it have one' , ( ) => {
162
+ it ( 'does not modify keys for replacement if it has one' , ( ) => {
163
163
const html = [ data . html . single , data . html . customElement ] . join ( '' ) ;
164
164
165
165
const reactElements = domToReact ( htmlToDOM ( html ) , {
@@ -171,7 +171,7 @@ describe('dom-to-react parser', () => {
171
171
return React . createElement (
172
172
'custom-button' ,
173
173
{
174
- key : 'meyKey ' ,
174
+ key : 'myKey ' ,
175
175
class : 'myClass' ,
176
176
'custom-attribute' : 'replaced value'
177
177
} ,
@@ -186,7 +186,7 @@ describe('dom-to-react parser', () => {
186
186
React . createElement (
187
187
'custom-button' ,
188
188
{
189
- key : 'meyKey ' ,
189
+ key : 'myKey ' ,
190
190
class : 'myClass' ,
191
191
'custom-attribute' : 'replaced value'
192
192
} ,
You can’t perform that action at this time.
0 commit comments