Skip to content
This repository was archived by the owner on Nov 23, 2017. It is now read-only.

Commit 8eb6e06

Browse files
committed
Use raw string for regex
1 parent f060dff commit 8eb6e06

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/test_streams.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -831,7 +831,7 @@ def test___repr__waiter(self):
831831
stream._waiter = asyncio.Future(loop=self.loop)
832832
self.assertRegex(
833833
repr(stream),
834-
"<StreamReader w=<Future pending[\S ]*>>")
834+
r"<StreamReader w=<Future pending[\S ]*>>")
835835
stream._waiter.set_result(None)
836836
self.loop.run_until_complete(stream._waiter)
837837
stream._waiter = None

0 commit comments

Comments
 (0)