Skip to content

Commit

Permalink
flipping the casing
Browse files Browse the repository at this point in the history
  • Loading branch information
caroline-ttd committed May 1, 2024
1 parent 481d4a2 commit b0f972c
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions test/UID2.Client.Test/BidstreamClientTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -331,15 +331,15 @@ private void TokenIsCstgDerivedTest(string domainOrAppName, TokenVersion tokenVe

[Theory]
// These are the domain or app names associated with site SITE_ID but vary in capitalization, as defined by KeySharingResponse();
[InlineData("example.com", TokenVersion.V2)]
[InlineData("example.org", TokenVersion.V2)]
[InlineData("com.123.Game.App.android", TokenVersion.V2)]
[InlineData("example.com", TokenVersion.V3)]
[InlineData("example.org", TokenVersion.V3)]
[InlineData("com.123.Game.App.android", TokenVersion.V3)]
[InlineData("example.com", TokenVersion.V4)]
[InlineData("example.org", TokenVersion.V4)]
[InlineData("com.123.Game.App.android", TokenVersion.V4)]
[InlineData("Example.com", TokenVersion.V2)]
[InlineData("Example.Org", TokenVersion.V2)]
[InlineData("com.123.Game.app.android", TokenVersion.V2)]
[InlineData("Example.com", TokenVersion.V3)]
[InlineData("Example.Org", TokenVersion.V3)]
[InlineData("com.123.Game.app.android", TokenVersion.V3)]
[InlineData("Example.com", TokenVersion.V4)]
[InlineData("Example.Org", TokenVersion.V4)]
[InlineData("com.123.Game.app.android", TokenVersion.V4)]
private void DomainOrAppNameCaseInSensitiveTest(string domainOrAppName, TokenVersion tokenVersion)
{
Refresh(KeySharingResponse(new[] { MASTER_KEY, SITE_KEY }));
Expand Down

0 comments on commit b0f972c

Please sign in to comment.