From 8e284f159fb9e13f9570ae9b0d11c4eb264edc8a Mon Sep 17 00:00:00 2001 From: Chris Caron Date: Thu, 21 Feb 2019 21:13:31 -0500 Subject: [PATCH] random test failing on split() fix --- test/test_rest_plugins.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_rest_plugins.py b/test/test_rest_plugins.py index 8128674b..37133bdb 100644 --- a/test/test_rest_plugins.py +++ b/test/test_rest_plugins.py @@ -3279,7 +3279,7 @@ def test_notify_overflow_split(): # Our body is only broken up; not lost _body = chunk.get('body') - assert body[offset: len(_body) + offset] == _body + assert body[offset: len(_body) + offset].rstrip() == _body offset += len(_body) #