From 91e3f3d5776dba43a35a615d6748b4bb03f75835 Mon Sep 17 00:00:00 2001 From: Brian Martin Date: Thu, 28 Feb 2019 08:49:05 -0500 Subject: [PATCH] fix failing tests? Is 3.5 failing because of a space? --- tests/test_ecovacs_xmpp.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_ecovacs_xmpp.py b/tests/test_ecovacs_xmpp.py index 21e0278..47bc020 100644 --- a/tests/test_ecovacs_xmpp.py +++ b/tests/test_ecovacs_xmpp.py @@ -13,12 +13,12 @@ def test_wrap_command(): c = str(x._wrap_command(Clean().to_xml(), 'E0000000001234567890@126.ecorobot.net/atom')) assert_true(search(r'from="20170101abcdefabcdefa@ecouser.net/abcdef12"', c)) assert_true(search(r'to="E0000000001234567890@126.ecorobot.net/atom"', c)) - #Remove failing Python 3.5 test for now - assert_true(search(r'td="Clean" id="',c)) #Check that an id was added to ctl + assert_true(search(r'td="Clean" id="', c)) #Check that an id was added to ctl cwithid = Clean().to_xml() cwithid.attrib["id"] = "12345678" c = str(x._wrap_command(cwithid, 'E0000000001234567890@126.ecorobot.net/atom')) - assert_true(search(r'td="Clean" id="12345678',c)) #Check that customid was added to ctl + assert_true(search(r'td="Clean" id="12345678', c)) #Check that customid was added to ctl def test_getReqID(): x = make_ecovacs_xmpp()