Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
chunhtai committed Sep 1, 2023
1 parent e4262bd commit 3c53357
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ import 'dart:io';

import 'package:collection/collection.dart';
import 'package:devtools_shared/src/deeplink/deeplink_manager.dart';
import 'package:devtools_shared/src/server/server_api.dart';
import 'package:test/test.dart';

void main() {
Expand Down Expand Up @@ -51,8 +50,10 @@ Running Gradle task 'printBuildVariants'... 10.4s
rootPath: projectRoot,
);
expect(response[DeeplinkManager.kErrorField], isNull);
expect(response[DeeplinkManager.kOutputJsonField],
'["debug","release","profile"]');
expect(
response[DeeplinkManager.kOutputJsonField],
'["debug","release","profile"]',
);
});

test('getBuildVariants return internal server error if command failed',
Expand Down

0 comments on commit 3c53357

Please sign in to comment.