mirror of
https://github.com/microsoft/onefuzz.git
synced 2025-06-19 13:03:44 +00:00
Use Graph SDK instead of manually constructing queries (#2324)
This commit is contained in:
@ -17,7 +17,8 @@ sealed class TestEndpointAuthorization : EndpointAuthorization {
|
||||
private readonly RequestType _type;
|
||||
private readonly IOnefuzzContext _context;
|
||||
|
||||
public TestEndpointAuthorization(RequestType type, ILogTracer log, IOnefuzzContext context) : base(context, log) {
|
||||
public TestEndpointAuthorization(RequestType type, ILogTracer log, IOnefuzzContext context)
|
||||
: base(context, log, null! /* not needed for test */) {
|
||||
_type = type;
|
||||
_context = context;
|
||||
}
|
||||
|
Reference in New Issue
Block a user