Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Cuizi7 committed Oct 19, 2018
1 parent 5494ca4 commit cc6faf1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/unittest/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@


def load_tests():
test_sute = TestSuite()
test_suite = TestSuite()
this_dir = os.path.dirname(__file__)
loader = TestLoader()
package_tests = loader.discover(start_dir=this_dir)
test_sute.addTests(package_tests)
return test_sute
test_suite.addTests(package_tests)
return test_suite


if __name__ == "__main__":
Expand Down

0 comments on commit cc6faf1

Please sign in to comment.