Skip to content

Commit

Permalink
Reformat
Browse files Browse the repository at this point in the history
  • Loading branch information
natebosch committed Oct 6, 2023
1 parent 9454718 commit 210a8f3
Showing 1 changed file with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions build_daemon/test/managers/build_target_manager_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -77,17 +77,12 @@ void main() {
expect(manager.targets.isEmpty, isTrue);
});

test(
'a build target will be reused if the target is the same', () {
test('a build target will be reused if the target is the same', () {
var manager = BuildTargetManager();
var channelA = DummyChannel();
var channelB = DummyChannel();
var targetA = DefaultBuildTarget((b) => b
..target = 'foo'
);
var targetB = DefaultBuildTarget((b) => b
..target = 'foo'
);
var targetA = DefaultBuildTarget((b) => b..target = 'foo');
var targetB = DefaultBuildTarget((b) => b..target = 'foo');
manager
..addBuildTarget(targetA, channelA)
..addBuildTarget(targetB, channelB);
Expand Down

0 comments on commit 210a8f3

Please sign in to comment.