Unverified Commit d1c45f17 authored by Yegor's avatar Yegor Committed by GitHub

fix the flavors test (#12949)

parent 5939ff45
......@@ -27,8 +27,11 @@ class _FlavorState extends State<Flavor> {
@override
Widget build(BuildContext context) {
return _flavor == null
return new Directionality(
textDirection: TextDirection.ltr,
child: _flavor == null
? const Text('Awaiting flavor...')
: new Text(_flavor, key: const ValueKey<String>('flavor'));
: new Text(_flavor, key: const ValueKey<String>('flavor')),
);
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment