Skip to content

Commit

Permalink
Remove dead code from reactive_ble_platform_test (PhilipsHue#703)
Browse files Browse the repository at this point in the history
  • Loading branch information
srawlins authored Mar 13, 2023
1 parent e14d8d0 commit 9aa9957
Showing 1 changed file with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@ void main() {

group('connect to device', () {
late pb.ConnectToDeviceRequest request;
StreamSubscription? subscription;
setUp(() {
request = pb.ConnectToDeviceRequest();
when(_argsConverter.createConnectToDeviceArgs('id', any, any))
Expand All @@ -85,10 +84,6 @@ void main() {
final length = await _sut.connectToDevice('id', {}, null).length;
expect(length, 1);
});

tearDown(() async {
await subscription?.cancel();
});
});

group('connect to device', () {
Expand Down

0 comments on commit 9aa9957

Please sign in to comment.