Skip to content

Commit b500799

Browse files
committed
runtypeType is a public getter
1 parent 4734cf8 commit b500799

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/mustachio/renderer_test.dart

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,13 @@ void main() {
2121

2222
test('property map contains all public getters', () {
2323
var propertyMap = Renderer_Foo.propertyMap();
24-
expect(propertyMap.keys, hasLength(5));
24+
expect(propertyMap.keys, hasLength(6));
2525
expect(propertyMap['b1'], isNotNull);
2626
expect(propertyMap['s1'], isNotNull);
2727
expect(propertyMap['l1'], isNotNull);
2828
expect(propertyMap['baz'], isNotNull);
2929
expect(propertyMap['hashCode'], isNotNull);
30+
expect(propertyMap['runtimeType'], isNotNull);
3031
});
3132

3233
test('property map contains valid bool Properties', () {

0 commit comments

Comments
 (0)