From f81b31ed7e79070f7ad088507ba2529b21a55d9f Mon Sep 17 00:00:00 2001 From: Christian Stenger Date: Tue, 8 Oct 2024 09:25:01 +0200 Subject: [PATCH] SquishTests: Adapt to changed display MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The sha nowadays has an additional trailing blank. Change-Id: Idad6d0219fa1a3b23ccaf7d874b8c557ec4bf639 Reviewed-by: Robert Löhning --- tests/system/suite_tools/tst_git_first_commit/test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/system/suite_tools/tst_git_first_commit/test.py b/tests/system/suite_tools/tst_git_first_commit/test.py index 0ee8f2505bf..3351a4de208 100644 --- a/tests/system/suite_tools/tst_git_first_commit/test.py +++ b/tests/system/suite_tools/tst_git_first_commit/test.py @@ -24,7 +24,7 @@ def main(): test.verify(detailsEdit.readOnly, "Details view is read only?") waitFor("str(detailsEdit.plainText) != 'Fetching commit data...'") commitDetails = str(detailsEdit.plainText) - test.verify("commit 05c35356abc31549c5db6eba31fb608c0365c2a0\n" \ + test.verify("commit 05c35356abc31549c5db6eba31fb608c0365c2a0 \n" \ "Author: con " in commitDetails, "Information header in details view?") test.verify("Initial import" in commitDetails, "Commit message in details view?")