@@ -608,7 +608,7 @@ main() {
608
608
});
609
609
});
610
610
611
- group ('Map props using (un)jsifyMapListProp' , () {
611
+ group ('List< Map> props using (un)jsifyMapListProp' , () {
612
612
group ('get converted to JS objects' , () {
613
613
group ('in the setter, and gets unconverted in getter' , () {
614
614
// This case is a little redundant with the (un)jsifyMapListProp tests above, but include it for completeness.
@@ -685,7 +685,7 @@ main() {
685
685
});
686
686
687
687
group ('and then reading a nested value that gets unconverted:' , () {
688
- group ('A nested map prop' , () {
688
+ group ('A nested map list prop' , () {
689
689
test ('using the typed props map' , () {
690
690
final builder = TestJs ()
691
691
..listOfProps = [
@@ -733,7 +733,7 @@ main() {
733
733
reason:
734
734
'test setup: should have converted to a JS object for storage in props map' );
735
735
736
- // For this test, it's important to mutate the original `listOfProps` Map passed into `builder.listOfProps`,
736
+ // For this test, it's important to mutate the original `listOfProps` List passed into `builder.listOfProps`,
737
737
// and not the value returned from the `builder.listOfProps` getter.
738
738
listOfProps[0 ]['data-foo' ] = 'bar' ;
739
739
expect (builder.listOfProps, [isEmpty]);
0 commit comments