From cf7a03ef0d6bb4ddc79a3dc7fde7951a97dba0e9 Mon Sep 17 00:00:00 2001 From: Christian Stenger Date: Thu, 8 Aug 2024 07:32:46 +0200 Subject: [PATCH] SquishTests: Adapt expectation MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit There is now an additional whitespace at the end of the commit due to different formatting. Change-Id: Ic3046fde626c8dcda3f902813c5474704af09c09 Reviewed-by: Jukka Nokso Reviewed-by: Robert Löhning --- tests/system/suite_tools/tst_git_local/test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/system/suite_tools/tst_git_local/test.py b/tests/system/suite_tools/tst_git_local/test.py index 1c9cd01712a..70459e455e8 100644 --- a/tests/system/suite_tools/tst_git_local/test.py +++ b/tests/system/suite_tools/tst_git_local/test.py @@ -87,7 +87,7 @@ def __clickCommit__(count): show = str(description.plainText) id = "Nobody " time = "\w{3} \w{3} \d{1,2} \d{2}:\d{2}:\d{2} \d{4}.* seconds ago\)" - expected = [["commit %s" % commit, False], + expected = [["commit %s " % commit, False], ["Author: %s, %s" % (id, time), True], ["Committer: %s, %s" % (id, time), True]] for line, exp in zip(show.splitlines(), expected):