From d3046c7edeb755b642ffe034bd0bc9caf2da53c9 Mon Sep 17 00:00:00 2001 From: Isaac Smith Date: Sat, 14 May 2016 19:24:48 -0400 Subject: [PATCH] Make tests reflect changes --- wolframalpha/test_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wolframalpha/test_client.py b/wolframalpha/test_client.py index c017d6f..4ce9756 100644 --- a/wolframalpha/test_client.py +++ b/wolframalpha/test_client.py @@ -27,7 +27,7 @@ def test_basic(API_key): res = client.query('30 deg C in deg F') assert len(res.pods) > 0 results = list(res.results) - assert results[0].text == '86 °F (degrees Fahrenheit)' + assert results[0].text == ['86 °F (degrees Fahrenheit)'] def test_invalid_app_id(): client = wolframalpha.Client('abcdefg')