diff options
Diffstat (limited to 'test/paintertest.cc')
-rw-r--r-- | test/paintertest.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/paintertest.cc b/test/paintertest.cc index 5c8cf45..69b28ff 100644 --- a/test/paintertest.cc +++ b/test/paintertest.cc @@ -116,7 +116,8 @@ public: { // Success criterion is simply to not assert in the drawing routines... GUI::Font font; - std::string someText = "Hello World"; + // a string with unicode characters + std::string someText = "Hello World - лæ"; std::size_t width = font.textWidth(someText); std::size_t height = font.textHeight(someText); |