Skip to content

Commit

Permalink
Fix location field typo when creating user
Browse files Browse the repository at this point in the history
Location field was misspelled in creating the users.
  • Loading branch information
tcoyze authored and honzakral committed Nov 15, 2018
1 parent 4a73943 commit d59b01b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/parent_child.py
Expand Up @@ -183,9 +183,9 @@ def setup():

# user objects to use
nick = User(id=47, signed_up=datetime(2017, 4, 3), username='fxdgear',
email='nick.lang@elastic.co', localtion='Colorado')
email='nick.lang@elastic.co', location='Colorado')
honza = User(id=42, signed_up=datetime(2013, 4, 3), username='honzakral',
email='honza@elastic.co', localtion='Prague')
email='honza@elastic.co', location='Prague')

# create a question object
question = Question(
Expand Down

0 comments on commit d59b01b

Please sign in to comment.