blob: 5b384579a1d41ce8917f283894aaf207fa39d474 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
--- a/tests/main.vala
+++ b/tests/main.vala
@@ -648,7 +648,7 @@
section.get_item_attribute (2, Menu.ATTRIBUTE_LABEL, "s", out label);
assert (strcmp (label, "Esperanto") == 0);
section.get_item_attribute (3, Menu.ATTRIBUTE_LABEL, "s", out label);
- assert (strcmp (label, "Pinyin") == 0);
+ assert (label.ascii_casecmp ("Pinyin") == 0);
}
public int main (string[] args) {
|