Skip to content

Commit

Permalink
Updated the dummy email addresses used in the seed module to follow a…
Browse files Browse the repository at this point in the history
… valid format (#2305)
  • Loading branch information
workaryangupta authored Mar 27, 2024
1 parent e50e258 commit 70ce65f
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions mslib/mscolab/seed.py
Original file line number Diff line number Diff line change
Expand Up @@ -234,52 +234,52 @@ def seed_data():
'username': 'a',
'id': 8,
'password': 'a',
'emailid': 'a'
'emailid': 'a@notexisting.org'
}, {
'username': 'b',
'id': 9,
'password': 'b',
'emailid': 'b'
'emailid': 'b@notexisting.org'
}, {
'username': 'c',
'id': 10,
'password': 'c',
'emailid': 'c'
'emailid': 'c@notexisting.org'
}, {
'username': 'd',
'id': 11,
'password': 'd',
'emailid': 'd'
'emailid': 'd@notexisting.org'
}, {
'username': 'test1',
'id': 12,
'password': 'test1',
'emailid': 'test1'
'emailid': 'test1@notexisting.org'
}, {
'username': 'test2',
'id': 13,
'password': 'test2',
'emailid': 'test2'
'emailid': 'test2@notexisting.org'
}, {
'username': 'test3',
'id': 14,
'password': 'test3',
'emailid': 'test3'
'emailid': 'test3@notexisting.org'
}, {
'username': 'test4',
'id': 15,
'password': 'test4',
'emailid': 'test4'
'emailid': 'test4@notexisting.org'
}, {
'username': 'mscolab_user',
'id': 16,
'password': 'password',
'emailid': 'mscolab_user'
'emailid': 'mscolab_user@notexisting.org'
}, {
'username': 'merge_waypoints_user',
'id': 17,
'password': 'password',
'emailid': 'merge_waypoints_user'
'emailid': 'merge_waypoints_user@notexisting.org'
}]
for user in users:
db_user = User(user['emailid'], user['username'], user['password'])
Expand Down

0 comments on commit 70ce65f

Please sign in to comment.