From f0ea95c617fc4999014719abe9d561a2cc851cde Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=8F=8B=E4=BA=BAA?= <1017480401@qq.com> Date: Tue, 14 Nov 2023 23:57:55 +0800 Subject: [PATCH] Fixing 'header supports dynamic' through conditions. --- plugins/http2_adapter/test/http2_test.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/http2_adapter/test/http2_test.dart b/plugins/http2_adapter/test/http2_test.dart index d1bf888f1..48386dee7 100644 --- a/plugins/http2_adapter/test/http2_test.dart +++ b/plugins/http2_adapter/test/http2_test.dart @@ -146,7 +146,7 @@ void main() { ), ); expect(res.data.toString(), contains('TEST')); - expect(res.data.toString(), contains('Listkey: 1,2')); + expect(res.data.toString(), contains('Listkey: 1, 2')); expect(res.data.toString(), contains('Stringkey: 1')); expect(res.data.toString(), contains('Numkey: 2')); expect(res.data.toString(), contains('Booleankey: false'));