Avoid newer pedantic lints, per request from @lrhn
diff --git a/pubspec.yaml b/pubspec.yaml
index 7f2a21d..8952141 100644
--- a/pubspec.yaml
+++ b/pubspec.yaml
@@ -13,5 +13,5 @@
   collection: ^1.1.0
 
 dev_dependencies:
-  pedantic: ^1.0.0
+  pedantic: '>=1.7.0 <1.8.0'
   test: ^1.0.0
diff --git a/test/typed_buffers_test.dart b/test/typed_buffers_test.dart
index 3f682b1..3305452 100644
--- a/test/typed_buffers_test.dart
+++ b/test/typed_buffers_test.dart
@@ -534,11 +534,9 @@
 
   MatchesInt32x4(this.result);
 
-  @override
   Description describe(Description description) =>
       description.add('Int32x4.==');
 
-  @override
   bool matches(item, Map matchState) {
     if (item is! Int32x4) return false;
     Int32x4 value = item;