From d8eefde17e96c02b6449e455faf64b3831b0dbc1 Mon Sep 17 00:00:00 2001 From: Paul Walko Date: Mon, 29 May 2017 17:27:58 -0400 Subject: [PATCH] remove unicode --- modules/test/test_calc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/test/test_calc.py b/modules/test/test_calc.py index 15d21b9..13e4839 100644 --- a/modules/test/test_calc.py +++ b/modules/test/test_calc.py @@ -29,7 +29,7 @@ class TestCalc(unittest.TestCase): input = Mock(group=lambda x: '2^64') c(self.phenny, input) - self.phenny.say.assert_called_once_with('1.84467441 × 10^19') + self.phenny.say.assert_called_once_with('1.84467441 * 10^19') def test_c_none(self): input = Mock(group=lambda x: 'aif')