diff --git a/modules/test/test_calc.py b/modules/test/test_calc.py index 875f300..cbf80d3 100644 --- a/modules/test/test_calc.py +++ b/modules/test/test_calc.py @@ -34,7 +34,9 @@ class TestCalc(unittest.TestCase): input = Mock(group=lambda x: 'airspeed of an unladen swallow') wa(self.phenny, input) - self.phenny.say.assert_called_once_with('25 mph (miles per hour)') + self.phenny.say.assert_called_once_with('25 mph (miles per hour), '\ + '(asked, but not answered, about a general swallow in the '\ + '1975 film Monty Python and the Holy Grail)') def test_wa_none(self): input = Mock(group=lambda x: "jajoajaj ojewphjqo I!tj") diff --git a/test/test_metar.py b/test/test_metar.py index 9e6b9e5..33e9653 100644 --- a/test/test_metar.py +++ b/test/test_metar.py @@ -19,7 +19,4 @@ class MetarTest(unittest.TestCase): assert w.temperature > -100 assert w.temperature < 100 - assert w.dewpoint > -100 - assert w.dewpoint < 100 - assert w.pressure is not None