This repository was archived by the owner on Feb 22, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
test/general.shard/android Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ import 'dart/package_map.dart';
1717/// They are escaped in Kotlin files.
1818///
1919/// https://kotlinlang.org/docs/keyword-reference.html
20- const List <String > kReservedKotlinKeywords = < String > ['when' , 'in' ];
20+ const List <String > kReservedKotlinKeywords = < String > ['when' , 'in' , 'is' ];
2121
2222/// Expands templates in a directory to a destination. All files that must
2323/// undergo template expansion should end with the '.tmpl' extension. All files
Original file line number Diff line number Diff line change @@ -36,12 +36,12 @@ void main() {
3636 );
3737
3838 final Map <String , Object > context = < String , Object > {
39- 'androidIdentifier' : 'in.when.there' ,
39+ 'androidIdentifier' : 'is. in.when.there' ,
4040 };
4141 template.render (destination, context);
4242
4343 final File destinationFile = destination.childFile (outputClass);
44- expect (destinationFile.readAsStringSync (), equals ('package `in`.`when`.there;' ));
44+ expect (destinationFile.readAsStringSync (), equals ('package `is`.` in`.`when`.there;' ));
4545 });
4646
4747}
You can’t perform that action at this time.
0 commit comments