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 b61ff216f..a52d97150 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);