update: updating test

This commit is contained in:
Patrick Stewart 2024-12-15 14:02:35 -07:00
parent f384d2e3cd
commit c1372244c4

View file

@ -115,8 +115,8 @@ void main() {
test('hasHeader', () async {
var res = await client.get(Uri.parse('/hello'));
expect(res, hasHeader('server'));
expect(res, hasHeader('server', 'Angel3'));
expect(res, hasHeader('server', ['Angel3']));
expect(res, hasHeader('server', 'Platform'));
expect(res, hasHeader('server', ['Platform']));
});
test('hasValidBody+hasContentType', () async {