Skip to content

Commit 37adf0a

Browse files
Fix test
Fix test locally by adding missing [NotNull] attribute.
1 parent 8e75932 commit 37adf0a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/AspNet.Security.OAuth.QQ/QQAuthenticationHandler.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,6 @@ protected override async Task<OAuthTokenResponse> ExchangeCodeAsync([NotNull] OA
163163

164164
protected override string FormatScope() => FormatScope(Options.Scope);
165165

166-
protected override string FormatScope(IEnumerable<string> scopes) => string.Join(',', scopes);
166+
protected override string FormatScope([NotNull] IEnumerable<string> scopes) => string.Join(',', scopes);
167167
}
168168
}

0 commit comments

Comments
 (0)