From af9f522befc959799b13b8f4ddb23cad3a6324ad Mon Sep 17 00:00:00 2001 From: Carl van Tonder Date: Sat, 22 Sep 2018 22:25:22 -0400 Subject: [PATCH] Fix test failure --- apps/map/tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/map/tests.py b/apps/map/tests.py index ffcb281..7c31f7e 100644 --- a/apps/map/tests.py +++ b/apps/map/tests.py @@ -96,7 +96,7 @@ class CaseStudyTests(TestCase): def test_get_renewable_generation_detail_with_wind(self): """get_renewable_generation_detail() should return the description prefixed with 'wind power'""" case_study = CaseStudy(generation_technology='SSWE') - self.assertEqual(case_study.get_renewable_generation_detail(), "Wind energy – Small-scale (less than 500kW)") + self.assertEqual(case_study.get_renewable_generation_detail(), "Wind energy – Small-scale (less than 500 kW)") def test_get_renewable_generation_detail_with_other(self): """get_renewable_generation_detail() should return the detail provided in .generation_technology_other"""