Index: tests/test_hd.py =================================================================== diff -u -rfb9052e39fb778d3d029eda4d6917a0a1fcb9cbd -r32e628abcbbd3fd70866505d9f2836a6f732ef06 --- tests/test_hd.py (.../test_hd.py) (revision fb9052e39fb778d3d029eda4d6917a0a1fcb9cbd) +++ tests/test_hd.py (.../test_hd.py) (revision 32e628abcbbd3fd70866505d9f2836a6f732ef06) @@ -1,22 +1,22 @@ ########################################################################### # -# Copyright (c) 2019-2019 Diality Inc. - All Rights Reserved. +# Copyright (c) 2020-2024 Diality Inc. - All Rights Reserved. # -# THIS CODE MAY NOT BE COPIED OR REPRODUCED IN ANY FORM, IN PART OR IN -# WHOLE, WITHOUT THE EXPLICIT PERMISSION OF THE COPYRIGHT OWNER. +# THIS CODE MAY NOT BE COPIED OR REPRODUCED IN ANY FORM, IN PART OR IN +# WHOLE, WITHOUT THE EXPLICIT PERMISSION OF THE COPYRIGHT OWNER. # -# @file hd_tests_script.py +# @file test_hd.py # -# @date 7-Apr-2019 -# @author P. Lucia +# @author (last) Peter Lucia +# @date (last) 02-Oct-2020 +# @author (original) Peter Lucia +# @date (original) 14-Jul-2020 # -# @brief This is an example test script for the HD. -# ############################################################################ import sys sys.path.append("..") from dialin.hd.constants import RESET, NO_RESET -from dialin.hd.hemodialysis_device import HD +from dialin import HD from time import sleep import unittest @@ -76,10 +76,9 @@ # hd.bloodflow.cmd_blood_flow_broadcast_interval_override(RESET,0) - # FIXME: Update passing criteria + # TODO: Update passing criteria self.assertTrue(True) if __name__ == '__main__': unittest.main(verbosity=2) -