From e3cdc2884aba037bd9c542ad0522acf5b283a3b4 Mon Sep 17 00:00:00 2001 From: Guille Date: Tue, 18 Jul 2023 17:00:19 -0400 Subject: [PATCH] force fail --- tests/test_costs.py | 9 --------- tests/unit_tests.py | 2 +- 2 files changed, 1 insertion(+), 10 deletions(-) delete mode 100644 tests/test_costs.py diff --git a/tests/test_costs.py b/tests/test_costs.py deleted file mode 100644 index 535f168..0000000 --- a/tests/test_costs.py +++ /dev/null @@ -1,9 +0,0 @@ -import unittest -from costs.cost import Cost - - -class TestCosts(unittest.TestCase): - def test_costs(self): - cost = Cost() - self.assertEqual(True, False) # add assertion here - diff --git a/tests/unit_tests.py b/tests/unit_tests.py index 3677651..b026308 100644 --- a/tests/unit_tests.py +++ b/tests/unit_tests.py @@ -49,7 +49,7 @@ class UnitTests(unittest.TestCase): for building in self._city.buildings: result = Cost(building).life_cycle self.assertIsNotNone(result) - self.assertEqual(0, result.values[0]) + self.assertEqual(1, result.values[0]) def test_scenario_1(self): for building in self._city.buildings: