Skip to content

Commit

Permalink
Task 724 PR feedback (#4845)
Browse files Browse the repository at this point in the history
  • Loading branch information
skofman1 committed Oct 13, 2017
1 parent 820924c commit 0de47a7
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/NuGetGallery.Core.Facts/Auditing/AuditActorTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ public void Constructor_WithOnBehalfOf_AcceptsNullValues()
Assert.Null(actor.UserName);
Assert.Null(actor.AuthenticationType);
Assert.Null(actor.OnBehalfOf);
Assert.Null(actor.CredentialKey);
}

[Fact]
Expand All @@ -64,6 +65,7 @@ public void Constructor_WithoutOnBehalfOf_AcceptsEmptyStringValues()
Assert.Equal(string.Empty, actor.MachineIP);
Assert.Equal(string.Empty, actor.UserName);
Assert.Equal(string.Empty, actor.AuthenticationType);
Assert.Equal(string.Empty, actor.CredentialKey);
}

[Fact]
Expand All @@ -82,6 +84,7 @@ public void Constructor_WithOnBehalfOf_AcceptsEmptyStringValues()
Assert.Equal(string.Empty, actor.MachineIP);
Assert.Equal(string.Empty, actor.UserName);
Assert.Equal(string.Empty, actor.AuthenticationType);
Assert.Equal(string.Empty, actor.CredentialKey);
}

[Fact]
Expand Down

0 comments on commit 0de47a7

Please sign in to comment.