From c2264e4e98d415c98cd62fb064e834b9a0a4cb50 Mon Sep 17 00:00:00 2001 From: Istvan Soos Date: Thu, 13 Mar 2025 14:16:11 +0100 Subject: [PATCH] Follow-up fix to token test. --- app/test/service/openid/github_actions_id_token_test.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/test/service/openid/github_actions_id_token_test.dart b/app/test/service/openid/github_actions_id_token_test.dart index b61ff216fc..a52d971506 100644 --- a/app/test/service/openid/github_actions_id_token_test.dart +++ b/app/test/service/openid/github_actions_id_token_test.dart @@ -52,7 +52,7 @@ void main() { // extract and parse token final map = json.decode(rs.body) as Map; - expect(map.keys.toSet(), {'value'}); + expect(map.keys.contains('value'), true); final tokenValue = map['value'] as String; final token = JsonWebToken.parse(tokenValue);