From 87d8fb75811a4186b27baf24d12a155a7acce414 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Diego=20Elio=20Petten=C3=B2?= Date: Tue, 1 Mar 2016 23:01:33 +0000 Subject: Move the InvalidChecksum exception to the base exceptions module. Most glucometers have *some* sort of checksum, so there is no reason to implement this on a per-driver basis. --- test/test_otultraeasy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/test_otultraeasy.py') diff --git a/test/test_otultraeasy.py b/test/test_otultraeasy.py index f263f12..07480d2 100644 --- a/test/test_otultraeasy.py +++ b/test/test_otultraeasy.py @@ -52,7 +52,7 @@ class TestOTUltraMini(unittest.TestCase): packet.validate_checksum() packet.disconnect = False - with self.assertRaises(lifescan_common.InvalidChecksum): + with self.assertRaises(exceptions.InvalidChecksum): packet.validate_checksum() -- cgit v1.2.3