Skip to content

Commit 9ee61cb

Browse files
Remove duplicate test block
1 parent 927cf91 commit 9ee61cb

File tree

1 file changed

+0
-16
lines changed

1 file changed

+0
-16
lines changed

test/over_react/experimental/redux_component_test.dart

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -166,22 +166,6 @@ void main() {
166166

167167
expect(component.numberOfRedraws, 1);
168168
});
169-
170-
test('when calling redraw', () {
171-
var store = new Store<BaseState, BaseStateBuilder, BaseActions>(
172-
baseReducerBuilder.build(),
173-
baseState,
174-
baseActions,
175-
);
176-
var jacket = mount<TestPureComponent>((TestPure()..store = store)());
177-
TestPureComponent component = jacket.getDartInstance();
178-
179-
expect(component.numberOfRedraws, 0);
180-
181-
component.redraw();
182-
183-
expect(component.numberOfRedraws, 1);
184-
});
185169
});
186170

187171
test('updates subscriptions when new props are passed', () async {

0 commit comments

Comments
 (0)