Skip to content

Commit 5b16ccf

Browse files
Remove tests that getters always returns same instance
1 parent e28443f commit 5b16ccf

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

test/over_react/component/prop_mixins_test.dart

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,6 @@ main() {
108108

109109
expect(instance, equals(ariaProps()..labelledby = 'foo'), reason: 'should set the prop properly');
110110
expect(instance.aria.labelledby, 'foo', reason: 'should be able to read the prop in addition to setting it');
111-
expect(instance.aria, same(instance.aria), reason: 'should cache the backing typed MapView');
112111
});
113112

114113
test('DOM props', () {
@@ -117,7 +116,6 @@ main() {
117116

118117
expect(instance, equals(domProps()..target = 'foo'), reason: 'should set the prop properly');
119118
expect(instance.dom.target, 'foo', reason: 'should be able to read the prop in addition to setting it');
120-
expect(instance.dom, same(instance.dom), reason: 'should cache the backing typed MapView');
121119
});
122120
});
123121
});

0 commit comments

Comments
 (0)