[PATCH 2/9] Update test of string2lines() to match new behaviour
"Jarret \"Jax\" Renker via Docutils-develop" <[email protected]>
| Newsgroups | gmane.text.docutils.devel |
|---|---|
| Message-ID | <MDcFdWYURcWkMfIDRxWvy8IpQNVRatGiSlKehNWV0Lj1FTZRtcfnuBizCc1w_kem4KBOkGFUeHQLzwlGxQqtbrrXrQZGwCXMSpGnazEk8Ko=@proton.me> |
---
docutils/test/test_statemachine.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/docutils/test/test_statemachine.py b/docutils/test/test_statemachine.py
index fa62720aa..8332a5a61 100755
--- a/docutils/test/test_statemachine.py
+++ b/docutils/test/test_statemachine.py
@@ -283,8 +283,8 @@ def test_make_transitions(self):
class MiscTests(unittest.TestCase):
s2l_string = "hello\tthere\thow are\tyou?\n\tI'm fine\tthanks.\n"
- s2l_expected = ['hello there how are you?',
- " I'm fine thanks."]
+ s2l_expected = ['hello\tthere\thow are\tyou?',
+ "\tI'm fine\tthanks."]
def test_string2lines(self):
self.assertEqual(statemachine.string2lines(self.s2l_string),