Index: tst_Internals/test.py =================================================================== diff -u -rb795e6250294344ef7b0396bae4648fb2aa306b3 -r3aed17dfb3ac5265e8ba5635c7ec43fa8c3c0d27 --- tst_Internals/test.py (.../test.py) (revision b795e6250294344ef7b0396bae4648fb2aa306b3) +++ tst_Internals/test.py (.../test.py) (revision 3aed17dfb3ac5265e8ba5635c7ec43fa8c3c0d27) @@ -12,14 +12,14 @@ # author Behrouz NematiPour # -import utils -import unittests +from dialin.squish.utils import tstStart, tstDone +from dialin.squish import unittests def main(): - utils.tstStart() + tstStart() - unittests.testPythonVersion() - unittests.testcrc8() + unittests.test_python_version() + unittests.test_crc8() - utils.tstDone() \ No newline at end of file + tstDone() \ No newline at end of file