From 32793d21e5162154b0306ee0f7de4f59170e3289 Mon Sep 17 00:00:00 2001 From: Caleb Schilly Date: Wed, 18 Dec 2024 12:49:16 -0500 Subject: [PATCH] #562: fix failing test --- tests/unit/Model/test_lbs_block.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/tests/unit/Model/test_lbs_block.py b/tests/unit/Model/test_lbs_block.py index 30769745..23944b2d 100644 --- a/tests/unit/Model/test_lbs_block.py +++ b/tests/unit/Model/test_lbs_block.py @@ -58,11 +58,6 @@ def setUp(self): self.block = Block(self.b_id, self.h_id, self.size, self.o_ids) def test_lbs_block_initialization(self): - wrong_bid = 1.0 - with self.assertRaises(TypeError) as err: - block_wrong_bid = Block(b_id=wrong_bid, h_id=1) - self.assertEqual(str(err.exception), f"b_id: incorrect type {type(wrong_bid)}") - wrong_hid = 1.0 with self.assertRaises(TypeError) as err: block_wrong_hid = Block(b_id=1, h_id=wrong_hid)