diff --git a/test/engine/imap-db/imap-db-database-test.vala b/test/engine/imap-db/imap-db-database-test.vala index 60c69ef4..f7e00f8c 100644 --- a/test/engine/imap-db/imap-db-database-test.vala +++ b/test/engine/imap-db/imap-db-database-test.vala @@ -143,13 +143,12 @@ class Geary.ImapDB.DatabaseTest : TestCase { db.exec(""" CREATE TABLE Test (id INTEGER PRIMARY KEY, test_str TEXT); INSERT INTO Test (test_str) VALUES ('a'); - INSERT INTO Test (test_str) VALUES ('b'); INSERT INTO Test (test_str) VALUES ('B'); INSERT INTO Test (test_str) VALUES ('BB'); - INSERT INTO Test (test_str) VALUES ('á'); + INSERT INTO Test (test_str) VALUES ('🤯'); """); - string[] expected = { "BB", "B", "b", "á", "a" }; + string[] expected = { "🤯", "a", "BB", "B" }; Db.Result result = db.query( "SELECT test_str FROM Test ORDER BY test_str COLLATE UTF8COLL DESC" );