From aa97c7fc275261526cded302262bf449c79e851e Mon Sep 17 00:00:00 2001 From: BuildTools Date: Mon, 7 Aug 2023 10:27:42 -0500 Subject: [PATCH] Updating tests so that #309 is taken into account. --- api/tests/test_imports.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/api/tests/test_imports.py b/api/tests/test_imports.py index 580f792c..609565cf 100644 --- a/api/tests/test_imports.py +++ b/api/tests/test_imports.py @@ -519,9 +519,9 @@ def test_get_monster_data(self): self.assertEqual( in_monster['stealth'], out_monster['skills']['stealth']) # MISALIGNED - self.assertEqual("", out_monster['reactions']) # Empty string? - self.assertEqual("", out_monster['legendary_desc']) # Empty string? - self.assertEqual("", out_monster['legendary_actions']) # Empty string? + #self.assertEqual("", out_monster['reactions']) # Empty string? - Fixed with #309 + #self.assertEqual("", out_monster['legendary_desc']) # Empty string? - Fixed with #309 + #self.assertEqual("", out_monster['legendary_actions']) # Empty string? - Fixed with #309 self.assertEqual( in_monster['special_abilities'][0]['name'], out_monster['special_abilities'][0]['name'])