Rename files to match @providesModule annotations

Reviewed By: davidaurelio

Differential Revision: D4507911

fbshipit-source-id: b8c9b77d7d9a2d8b2ae80d85d116f456766acba0
This commit is contained in:
Bhuwan Khattar 2017-02-03 15:48:18 -08:00 committed by Facebook Github Bot
parent 54d3e83bbf
commit 57daad98f0
3 changed files with 4 additions and 4 deletions

View File

@ -144,7 +144,7 @@ static ControlBlock propertiesUpdateBlock()
#pragma mark Logic Tests
// This list should be kept in sync with RCTRootViewIntegrationTestApp.js
// This list should be kept in sync with RCTRootViewIntegrationTestsApp.js
// Simple size flexibility tests - test if the content is measured properly
RCT_TEST_DATA_CONFIGURATION_BLOCK(SizeFlexibilityUpdateTest, SingleUpdate, none, simpleSizeFlexibilityBlock(RCTNone));

View File

@ -6,7 +6,7 @@
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*
* @providesModule RCTRootViewIntegrationTestsApp
* @providesModule RCTRootViewIntegrationTestApp
*/
'use strict';
@ -35,7 +35,7 @@ TESTS.forEach(
(test) => AppRegistry.registerComponent(test.displayName, () => test)
);
class RCTRootViewIntegrationTestsApp extends React.Component {
class RCTRootViewIntegrationTestApp extends React.Component {
state = {
test: null,
};
@ -91,4 +91,4 @@ var styles = StyleSheet.create({
},
});
AppRegistry.registerComponent('RCTRootViewIntegrationTestsApp', () => RCTRootViewIntegrationTestsApp);
AppRegistry.registerComponent('RCTRootViewIntegrationTestApp', () => RCTRootViewIntegrationTestApp);