From a5d6559d24b623f5422207dd50cf2b0be993f0b2 Mon Sep 17 00:00:00 2001 From: Jeroen Schweitzer Date: Wed, 17 Jun 2026 22:27:12 +0200 Subject: [PATCH] fix(test): pty_log_test imports package:test, not flutter_test MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The breadcrumb unit test (T-434) pulled package:flutter_test, which imports dart:ui — unavailable under plain `dart test`. That broke the flutter-free core batch (ci/test_core.sh) for every file compiled after it. It uses only package:test APIs, so the import was simply wrong; siblings already use package:test. Co-Authored-By: Claude Opus 4.8 (1M context) --- test/pty/pty_log_test.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/pty/pty_log_test.dart b/test/pty/pty_log_test.dart index d0eaa94b..a69bb20d 100644 --- a/test/pty/pty_log_test.dart +++ b/test/pty/pty_log_test.dart @@ -3,7 +3,7 @@ import 'dart:io'; import 'package:clide/src/pty/pty_log.dart'; -import 'package:flutter_test/flutter_test.dart'; +import 'package:test/test.dart'; void main() { group('PtyLog', () {