Skip to content

Commit

Permalink
Removed changes as failing unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
npoxon committed Sep 8, 2019
1 parent b8ea5fb commit f79c6cf
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,10 @@ public ConferenceBuilder WithParticipant(UserRole userRole, string caseTypeGroup
{
if (string.IsNullOrWhiteSpace(username))
{
username = $"Automation_{Internet.Email()}";
username = Internet.Email();
}
var participant = new Builder(_builderSettings).CreateNew<Participant>().WithFactory(() =>
new Participant(Guid.NewGuid(), $"Automation_{Name.FullName()}", $"Automation_{Name.First()}", username, userRole,
new Participant(Guid.NewGuid(), Name.FullName(), Name.First(), username, userRole,
caseTypeGroup)).Build();

if (userRole == UserRole.Representative)
Expand Down

0 comments on commit f79c6cf

Please sign in to comment.