We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f37c98f commit b76e032Copy full SHA for b76e032
app/test/service/openid/github_actions_id_token_test.dart
@@ -52,7 +52,7 @@ void main() {
52
53
// extract and parse token
54
final map = json.decode(rs.body) as Map<String, dynamic>;
55
- expect(map.keys.toSet(), {'value'});
+ expect(map.keys.contains('value'), true);
56
final tokenValue = map['value'] as String;
57
final token = JsonWebToken.parse(tokenValue);
58
0 commit comments