Skip to content

Commit

Permalink
Fix warning in test. Arguments must be typed.
Browse files Browse the repository at this point in the history
  • Loading branch information
Hixie committed Oct 19, 2015
1 parent 9338007 commit 5b79349
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sky/unit/test/widget/tabs_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Widget buildFrame({ List<String> tabs, bool isScrollable: false }) {
labels: tabs.map((String tab) => new TabLabel(text: tab)).toList(),
selectedIndex: selectedIndex,
isScrollable: isScrollable,
onChanged: (tabIndex) {
onChanged: (int tabIndex) {
selectedIndex = tabIndex;
}
);
Expand Down

0 comments on commit 5b79349

Please sign in to comment.