Skip to content

Commit f37c98f

Browse files
authored
Fix Github Actions token test. (#8641)
1 parent e1fb48f commit f37c98f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/test/service/openid/github_actions_id_token_test.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ void main() {
5252

5353
// extract and parse token
5454
final map = json.decode(rs.body) as Map<String, dynamic>;
55-
expect(map.keys.toSet(), {'count', 'value'});
55+
expect(map.keys.toSet(), {'value'});
5656
final tokenValue = map['value'] as String;
5757
final token = JsonWebToken.parse(tokenValue);
5858

0 commit comments

Comments
 (0)