Skip to content

Commit

Permalink
Fix spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
yanokwa committed Sep 9, 2019
1 parent a28d9bf commit aace36f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions pyxform/tests_v1/test_fields.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ def test_duplicate_choice_list_with_setting(self):
</item>
</select1>
"""
self.assertPyxformXform(md=md, model__contins=[expected], run_odk_validate=True)
self.assertPyxformXform(md=md, model__contains=[expected], run_odk_validate=True)

def test_choice_list_without_duplicates_is_successful(self):
md = """
Expand Down Expand Up @@ -145,4 +145,4 @@ def test_choice_list_without_duplicates_is_successful(self):
</item>
</select1>
"""
self.assertPyxformXform(md=md, model__contins=[expected], run_odk_validate=True)
self.assertPyxformXform(md=md, model__contains=[expected], run_odk_validate=True)
2 changes: 1 addition & 1 deletion pyxform/tests_v1/test_repeat.py
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ def test_hints_are_present_within_repeats(self):
</group>
""" # noqa

self.assertPyxformXform(md=md, model__contins=[expected], run_odk_validate=True)
self.assertPyxformXform(md=md, model__contains=[expected], run_odk_validate=True)

def test_hints_are_present_within_groups(self):
"""Tests that hints are present within groups."""
Expand Down
2 changes: 1 addition & 1 deletion pyxform/tests_v1/test_support_external_instances.py
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ def test_external_choices_sheet_values_required(self):
</itemset>"""
] # noqa
self.assertPyxformXform(
md=md, debug=True, model__contins=[expected], run_odk_validate=True
md=md, debug=True, model__contains=[expected], run_odk_validate=True
)

def test_list_name_not_in_external_choices_sheet_raises_error(self):
Expand Down

0 comments on commit aace36f

Please sign in to comment.