Skip to content

Commit

Permalink
Fix variable spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
gunthercox committed Oct 6, 2018
1 parent 027070f commit 486b25f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ def test_character_count(self):

corpora = self.corpus.load_corpus('chatterbot.corpus')

for converstions in corpora:
for conversation in converstions:
for conversations in corpora:
for conversation in conversations:
for statement in conversation:
if len(statement) > DIALOG_MAXIMUM_CHARACTER_LENGTH:
self.fail(
Expand Down

0 comments on commit 486b25f

Please sign in to comment.