Skip to content
This repository has been archived by the owner on Jun 7, 2018. It is now read-only.

Commit

Permalink
Helper test case invocation changed
Browse files Browse the repository at this point in the history
  • Loading branch information
rc0r committed Jan 3, 2015
1 parent 29f0ec5 commit 269c909
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions tests/test_Helper.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# -*- coding: utf-8 -*-

from AvivoreXT import Helper
import unittest, sys
import unittest
from test import test_support
from array import array
from AvivoreXT import Helper


class HelperTestCase(unittest.TestCase):
Expand Down Expand Up @@ -70,7 +70,8 @@ def test_output(self):


def test_main():
test_support.run_unittest(HelperTestCase)
suite = unittest.defaultTestLoader.loadTestsFromTestCase(HelperTestCase)
unittest.TextTestRunner().run(suite)

if __name__ == '__main__':
test_main()

0 comments on commit 269c909

Please sign in to comment.