瀏覽代碼

ios unit tests dont compile

Daniel Zlotin 8 年之前
父節點
當前提交
7a2af5e36e
共有 1 個文件被更改,包括 1 次插入2 次删除
  1. 1
    2
      ios/ReactNativeNavigationTests/RNNRootViewControllerTest.m

+ 1
- 2
ios/ReactNativeNavigationTests/RNNRootViewControllerTest.m 查看文件

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