mirror of
https://github.com/facebook/react.git
synced 2025-11-01 09:12:30 +00:00
Update tests to use Polyglot profile of HTML
This commit is contained in:
@@ -78,12 +78,12 @@ describe('DOMPropertyOperations', function() {
|
||||
expect(DOMPropertyOperations.createMarkupForProperty(
|
||||
'checked',
|
||||
'simple'
|
||||
)).toBe('checked');
|
||||
)).toBe('checked=""');
|
||||
|
||||
expect(DOMPropertyOperations.createMarkupForProperty(
|
||||
'checked',
|
||||
true
|
||||
)).toBe('checked');
|
||||
)).toBe('checked=""');
|
||||
|
||||
expect(DOMPropertyOperations.createMarkupForProperty(
|
||||
'checked',
|
||||
@@ -100,7 +100,7 @@ describe('DOMPropertyOperations', function() {
|
||||
expect(DOMPropertyOperations.createMarkupForProperty(
|
||||
'download',
|
||||
true
|
||||
)).toBe('download');
|
||||
)).toBe('download=""');
|
||||
|
||||
expect(DOMPropertyOperations.createMarkupForProperty(
|
||||
'download',
|
||||
|
||||
Reference in New Issue
Block a user