Fix tests by fixing a typo in Text due to one of my recent checkins.

TBR=abarth

Review URL: https://codereview.chromium.org/1191793004.
This commit is contained in:
Hixie 2015-06-17 17:59:56 -07:00
parent 93218fdb14
commit ff705fa119

View File

@ -381,7 +381,7 @@ class Inline extends LeafRenderObjectWrapper {
}
class Text extends Component {
Text(data, { String key, TextStyle this.style }) : super(key: key);
Text(this.data, { String key, TextStyle this.style }) : super(key: key);
final String data;
final TextStyle style;
bool get interchangeable => true;