Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
zahalzel committed Dec 9, 2022
1 parent d7ef389 commit b259c4b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")]
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
using Microsoft.DotNet.MSIdentity.Shared;
using Microsoft.DotNet.MSIdentity.Tool;
using Microsoft.Graph;
using Microsoft.Identity.Client;
using Moq;
using Xunit;

Expand Down Expand Up @@ -100,8 +99,8 @@ public async void TestGetApplications_OneAppB2C()
Assert.Equal(1, apps.Count);
var additionalData = apps.First()?.AdditionalData;
Assert.NotNull(additionalData);
Assert.True(additionalData.ContainsKey("isB2C"));
additionalData.TryGetValue("isB2C", out var isB2C);
Assert.True(additionalData.ContainsKey("IsB2C"));
additionalData.TryGetValue("IsB2C", out var isB2C);
Assert.True((bool)isB2C);
}
}
Expand Down

0 comments on commit b259c4b

Please sign in to comment.