Skip to content

Commit db0748d

Browse files
committed
Remove now unnecessary hash tests
1 parent fda4f91 commit db0748d

File tree

1 file changed

+0
-17
lines changed

1 file changed

+0
-17
lines changed

test/quiver_test.dart

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -54,21 +54,4 @@ void main() {
5454
expect(ab, [1, 2, 3, 4, 5, 6]);
5555
});
5656
});
57-
58-
group('hash', () {
59-
test('hash2 should return an int', () {
60-
var h = Object.hash('123', 456);
61-
expect(h, isA<int>());
62-
});
63-
64-
test('hash3 should return an int', () {
65-
var h = Object.hash('123', 456, true);
66-
expect(h, isA<int>());
67-
});
68-
69-
test('hash4 should return an int', () {
70-
var h = Object.hash('123', 456, true, []);
71-
expect(h, isA<int>());
72-
});
73-
});
7457
}

0 commit comments

Comments
 (0)