This commit is contained in:
@@ -631,7 +631,7 @@ namespace AyaNova.Util
|
||||
u.UserOptions.EmailAddress = Fake.Internet.ExampleEmail();
|
||||
u.UserOptions.Hour12 = true;
|
||||
u.UserOptions.CurrencyName = "USD";
|
||||
u.UserOptions.UiColor = Fake.Internet.Color();
|
||||
u.UserOptions.UiColor = Fake.Internet.Color().ToUpperInvariant();
|
||||
|
||||
|
||||
//this seems wrong to get a new context inside a loop but in testing is actually faster!?
|
||||
@@ -725,7 +725,7 @@ namespace AyaNova.Util
|
||||
o.Notes = Fake.Company.CatchPhrase();
|
||||
o.Tags = RandomTags();
|
||||
|
||||
o.AccountNumber=Fake.Finance.Account();
|
||||
o.AccountNumber = Fake.Finance.Account();
|
||||
o.Latitude = (decimal)Fake.Address.Latitude();
|
||||
o.Longitude = (decimal)Fake.Address.Longitude();
|
||||
o.Address = Fake.Address.StreetAddress();
|
||||
@@ -733,11 +733,11 @@ namespace AyaNova.Util
|
||||
o.Region = Fake.Address.State();
|
||||
o.Country = Fake.Address.Country();
|
||||
|
||||
o.Phone1=Fake.Phone.PhoneNumber();
|
||||
o.Phone2=Fake.Phone.PhoneNumber();
|
||||
o.Phone3=Fake.Phone.PhoneNumber();
|
||||
o.WebAddress=Fake.Internet.Url();
|
||||
o.EmailAddress=Fake.Internet.ExampleEmail();
|
||||
o.Phone1 = Fake.Phone.PhoneNumber();
|
||||
o.Phone2 = Fake.Phone.PhoneNumber();
|
||||
o.Phone3 = Fake.Phone.PhoneNumber();
|
||||
o.WebAddress = Fake.Internet.Url();
|
||||
o.EmailAddress = Fake.Internet.ExampleEmail();
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user