Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ public void ShouldUseInteractiveProviderWhenDelegated()
}

[Fact]
public void ShouldUseDeviceCodeProviderWhenDelegatedContextAndClientIdIsProvided()
public void ShouldUseInteractiveAuthenticationProviderWhenDelegatedContextAndClientIdIsProvided()
{
// Arrange
AuthContext delegatedAuthContext = new AuthContext
Expand All @@ -126,7 +126,7 @@ public void ShouldUseDeviceCodeProviderWhenDelegatedContextAndClientIdIsProvided
IAuthenticationProvider authProvider = AuthenticationHelpers.GetAuthProvider(delegatedAuthContext);

// Assert
Assert.IsType<DeviceCodeProvider>(authProvider);
Assert.IsType<InteractiveAuthenticationProvider>(authProvider);

// reset static instance.
GraphSession.Reset();
Expand Down