summaryrefslogtreecommitdiff
path: root/tools/python_test_v4.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/python_test_v4.py')
-rw-r--r--tools/python_test_v4.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/tools/python_test_v4.py b/tools/python_test_v4.py
index 7c97899..f5d5df0 100644
--- a/tools/python_test_v4.py
+++ b/tools/python_test_v4.py
@@ -466,8 +466,9 @@ discussion = commit.discussions.get(discussion.id)
commit.revert(branch="master")
revert_commit = admin_project.commits.list()[0]
-expected_message = "Revert \"{}\"\n\nThis reverts commit {}".format(
- commit.message, commit.id)
+expected_message = 'Revert "{}"\n\nThis reverts commit {}'.format(
+ commit.message, commit.id
+)
assert revert_commit.message == expected_message
try: