Skip to content

Commit b76e032

Browse files
authored
Follow-up fix to token test. (#8642)
1 parent f37c98f commit b76e032

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(), {'value'});
55+
expect(map.keys.contains('value'), true);
5656
final tokenValue = map['value'] as String;
5757
final token = JsonWebToken.parse(tokenValue);
5858

0 commit comments

Comments
 (0)