From 27abf7f8e0b5691fdb2abf322b92e6809abc9116 Mon Sep 17 00:00:00 2001 From: Nate Bosch Date: Fri, 8 Nov 2024 01:41:13 +0000 Subject: [PATCH] Don't make the library appear deprecated --- pkgs/test/lib/test.dart | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/test/lib/test.dart b/pkgs/test/lib/test.dart index 60d37e5f6..7c65734dd 100644 --- a/pkgs/test/lib/test.dart +++ b/pkgs/test/lib/test.dart @@ -2,6 +2,9 @@ // for details. All rights reserved. Use of this source code is governed by a // BSD-style license that can be found in the LICENSE file. +// Library directive avoids confusing the deprecation for the entire library. +// ignore: unnecessary_library_directive +library; @Deprecated('import `package:matcher/expect.dart`') export 'package:matcher/expect.dart';