Browse Source

ios unit tests dont compile

Daniel Zlotin 7 years ago
parent
commit
7a2af5e36e
1 changed files with 1 additions and 2 deletions
  1. 1
    2
      ios/ReactNativeNavigationTests/RNNRootViewControllerTest.m

+ 1
- 2
ios/ReactNativeNavigationTests/RNNRootViewControllerTest.m View File

18
 
18
 
19
 
19
 
20
 - (void)sendsEventOnAppear {
20
 - (void)sendsEventOnAppear {
21
-	NSMutableDictionary* params = @{};
21
+	NSDictionary* params = @{};
22
 	RNNRootViewController* uut = [[RNNRootViewController alloc] initWithNode:[RNNLayoutNode create:params]];
22
 	RNNRootViewController* uut = [[RNNRootViewController alloc] initWithNode:[RNNLayoutNode create:params]];
23
 	[uut viewDidAppear:true];
23
 	[uut viewDidAppear:true];
24
-	
25
 }
24
 }
26
 
25
 
27
 
26