Fix encoding of various files
Reviewed By: jeanlauliac Differential Revision: D6220214 fbshipit-source-id: dc97d7ec75a0a52cac5fe2acb980b455094ea7a6
This commit is contained in:
parent
834b9d4e6e
commit
3d7cf4f0cf
|
@ -371,7 +371,7 @@ describe('Animated tests', () => {
|
|||
loop.start(cb);
|
||||
|
||||
expect(animation.start).not.toBeCalled();
|
||||
expect(cb).toBeCalledWith({ finished: true });
|
||||
expect(cb).toBeCalledWith({finished: true});
|
||||
});
|
||||
|
||||
it('supports interrupting an indefinite loop', () => {
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
* BezierEasing - use bezier curve for transition easing function
|
||||
* https://github.com/gre/bezier-easing
|
||||
*
|
||||
* @copyright 2014-2015 Gaëtan Renaudeau. MIT License.
|
||||
* @copyright 2014-2015 Gaetan Renaudeau. MIT License.
|
||||
* @noflow
|
||||
* @emails oncall+react_native
|
||||
*/
|
||||
|
|
|
@ -146,7 +146,7 @@ describe('resolveAssetSource', () => {
|
|||
height: 200,
|
||||
scales: [1],
|
||||
hash: '5b6f00f',
|
||||
name: '!@Logo#1_€', // Invalid chars shouldn't get passed to native
|
||||
name: '!@Logo#1_\u20ac', // Invalid chars shouldn't get passed to native
|
||||
type: 'png',
|
||||
}, {
|
||||
__packager_asset: true,
|
||||
|
@ -174,7 +174,7 @@ describe('resolveAssetSource', () => {
|
|||
height: 200,
|
||||
scales: [1],
|
||||
hash: '5b6f00f',
|
||||
name: '!@Logo#1_€',
|
||||
name: '!@Logo#1_\u20ac',
|
||||
type: 'png',
|
||||
}, {
|
||||
__packager_asset: true,
|
||||
|
@ -202,7 +202,7 @@ describe('resolveAssetSource', () => {
|
|||
height: 200,
|
||||
scales: [1],
|
||||
hash: '5b6f00f',
|
||||
name: '!@Logo#1_€',
|
||||
name: '!@Logo#1_\u20ac',
|
||||
type: 'png',
|
||||
}, {
|
||||
__packager_asset: true,
|
||||
|
@ -233,7 +233,7 @@ describe('resolveAssetSource', () => {
|
|||
height: 200,
|
||||
scales: [1],
|
||||
hash: '5b6f00f',
|
||||
name: '!@Logo#1_€',
|
||||
name: '!@Logo#1_\u20ac',
|
||||
type: 'png',
|
||||
}, {
|
||||
__packager_asset: true,
|
||||
|
@ -256,7 +256,7 @@ describe('resolveAssetSource', () => {
|
|||
height: 200,
|
||||
scales: [1],
|
||||
hash: '5b6f00f',
|
||||
name: '!@Logo#1_€',
|
||||
name: '!@Logo#1_\u20ac',
|
||||
type: 'png',
|
||||
}, {
|
||||
__packager_asset: true,
|
||||
|
|
Loading…
Reference in New Issue