From 0f683a48ed629c2fe1402694934395c3cc2d9afa Mon Sep 17 00:00:00 2001 From: Brian Quinlan Date: Fri, 27 Sep 2024 17:44:46 -0700 Subject: [PATCH] Update ns_input_stream_test.dart --- pkgs/objective_c/test/ns_input_stream_test.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/objective_c/test/ns_input_stream_test.dart b/pkgs/objective_c/test/ns_input_stream_test.dart index 02aa75238..ca91f613e 100644 --- a/pkgs/objective_c/test/ns_input_stream_test.dart +++ b/pkgs/objective_c/test/ns_input_stream_test.dart @@ -134,7 +134,7 @@ void main() { while (true) { final (count, data, hasBytesAvailable, status, error) = await read(inputStream, 6); - + print('${(count, data, hasBytesAvailable, status, error)}'); readData.addAll(data); expect(error, isNull);