Skip to content

Commit 6e74736

Browse files
committed
fix windows tests
1 parent d0b9518 commit 6e74736

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

test/integration/integration_test.dart

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -307,10 +307,16 @@ void main() {
307307
lines,
308308
allOf(
309309
contains(
310-
' [INF] lib/src/analyze.dart:1:6 • The library contains public symbols, but is not exported in any of the package library files. • src_library_not_exported',
310+
allOf(
311+
contains('analyze.dart'),
312+
endsWith('src_library_not_exported'),
313+
),
311314
),
312315
contains(
313-
' [INF] test/test.dart:1:8 • Libraries in lib/src, test or tool should not import package library files from lib. • no_self_package_imports',
316+
allOf(
317+
contains('test.dart'),
318+
endsWith('no_self_package_imports'),
319+
),
314320
),
315321
),
316322
);

0 commit comments

Comments
 (0)