소스 검색

Fix rebase issue

Guy Carmeli 5 년 전
부모
커밋
4df0185d35
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      lib/android/app/src/test/java/com/reactnativenavigation/viewcontrollers/BottomTabPresenterTest.java

+ 1
- 1
lib/android/app/src/test/java/com/reactnativenavigation/viewcontrollers/BottomTabPresenterTest.java 파일 보기

@@ -106,7 +106,7 @@ public class BottomTabPresenterTest extends BaseTest {
106 106
         Options options = new Options();
107 107
         options.bottomTabOptions.iconColor = new DontApplyColour();
108 108
         options.bottomTabOptions.selectedIconColor = new DontApplyColour();
109
-        uut.mergeChildOptions(options, (Component) child3.getView());
109
+        uut.mergeChildOptions(options, child3);
110 110
         verify(bottomTabs, times(0)).setIconActiveColor(anyInt(), anyInt());
111 111
         verify(bottomTabs, times(0)).setIconInactiveColor(anyInt(), anyInt());
112 112
     }