[Lldb-commits] [lldb] [lldb] Update TestUnicode.py after #194352 (PR #194756)
Jonas Devlieghere via lldb-commits
lldb-commits at lists.llvm.org
Tue Apr 28 17:10:31 PDT 2026
https://github.com/JDevlieghere created https://github.com/llvm/llvm-project/pull/194756
None
>From 76704c39ab0bb531bb4ad70cf0e5e8aa22a777a2 Mon Sep 17 00:00:00 2001
From: Jonas Devlieghere <jonas at devlieghere.com>
Date: Tue, 28 Apr 2026 17:09:45 -0700
Subject: [PATCH] [lldb] Update TestUnicode.py after #194352
---
lldb/test/API/iohandler/unicode/TestUnicode.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lldb/test/API/iohandler/unicode/TestUnicode.py b/lldb/test/API/iohandler/unicode/TestUnicode.py
index 0b1564c6896d0..c9bb1c2af0bd0 100644
--- a/lldb/test/API/iohandler/unicode/TestUnicode.py
+++ b/lldb/test/API/iohandler/unicode/TestUnicode.py
@@ -24,7 +24,7 @@ def test_unicode_input(self):
# We should get back that this is an invalid command with our character as UTF-8.
self.expect(
"\u1234",
- substrs=["error: '\u1234' is not a valid command.".encode("utf-8")],
+ substrs=["error: '\u1234' is not a valid command".encode("utf-8")],
)
self.quit()
More information about the lldb-commits
mailing list