Skip to content

Commit

Permalink
dartfmt
Browse files Browse the repository at this point in the history
  • Loading branch information
chalin committed Jul 14, 2018
1 parent 291b506 commit 1705a12
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions test/priority_queue_test.dart
Expand Up @@ -16,8 +16,7 @@ void main() {

void testDefault() {
test('new PriorityQueue() returns a HeapPriorityQueue', () {
expect(
new PriorityQueue<int>(), TypeMatcher<HeapPriorityQueue<int>>());
expect(new PriorityQueue<int>(), TypeMatcher<HeapPriorityQueue<int>>());
});
testInt(() => new PriorityQueue<int>());
testCustom((comparator) => new PriorityQueue<C>(comparator));
Expand Down

0 comments on commit 1705a12

Please sign in to comment.