Skip to content

Commit

Permalink
Rename files to match @providesModule annotations
Browse files Browse the repository at this point in the history
Reviewed By: davidaurelio

Differential Revision: D4507911

fbshipit-source-id: b8c9b77d7d9a2d8b2ae80d85d116f456766acba0
  • Loading branch information
voideanvalue authored and facebook-github-bot committed Feb 3, 2017
1 parent 54d3e83 commit 57daad9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ - (void)setUp

#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));
Expand Down
6 changes: 3 additions & 3 deletions IntegrationTests/RCTRootViewIntegrationTestApp.js
Original file line number Diff line number Diff line change
Expand Up @@ -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';

Expand Down Expand Up @@ -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,
};
Expand Down Expand Up @@ -91,4 +91,4 @@ var styles = StyleSheet.create({
},
});

AppRegistry.registerComponent('RCTRootViewIntegrationTestsApp', () => RCTRootViewIntegrationTestsApp);
AppRegistry.registerComponent('RCTRootViewIntegrationTestApp', () => RCTRootViewIntegrationTestApp);
File renamed without changes.

0 comments on commit 57daad9

Please sign in to comment.