Index: tests/unit_tests/test_constructors.py =================================================================== diff -u -rb93016ee67204223658152cb2952e8ab16af1b94 -r72c423da1d07c40699f40b5da5bee6d992d3082c --- tests/unit_tests/test_constructors.py (.../test_constructors.py) (revision b93016ee67204223658152cb2952e8ab16af1b94) +++ tests/unit_tests/test_constructors.py (.../test_constructors.py) (revision 72c423da1d07c40699f40b5da5bee6d992d3082c) @@ -16,22 +16,19 @@ import unittest import sys sys.path.append("../../") -from dialin import HDSimulator, DGSimulator, HD, DG +from leahi_dialin import TD, DD, FP class Test(unittest.TestCase): - def test_hd_simulator(self): - HDSimulator() + def test_td(self): + TD() - def test_dg_simulator(self): - DGSimulator() + def test_dd(self): + DD() - def test_hd(self): - HD() + def test_fp(self): + FP() - def test_dg(self): - DG() - if __name__ == '__main__': sys.exit(unittest.main(verbosity=2).result.wasSuccessful())