Update the sample data

Change the domain name in sample user from sample.com to example.com
This commit is contained in:
Troy Dai 2015-04-17 09:18:12 -07:00
parent 06b61511e5
commit 63f6f42e7e
1 changed files with 1 additions and 1 deletions

View File

@ -117,7 +117,7 @@ namespace MusicStore.Models
{
for (int i = 0; i < 100; ++i)
{
var email = string.Format("User{0:D3}@sample.com", i);
var email = string.Format("User{0:D3}@example.com", i);
var normalUser = await userManager.FindByEmailAsync(email);
if (normalUser == null)
{