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 9dcd073fcf..b61ff216fc 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(), {'count', 'value'}); + expect(map.keys.toSet(), {'value'}); final tokenValue = map['value'] as String; final token = JsonWebToken.parse(tokenValue);