aboutsummaryrefslogtreecommitdiff
path: root/tests/ovsdb-data.at
diff options
context:
space:
mode:
authorEthan Jackson <ethan@nicira.com>2011-01-30 20:02:16 -0800
committerEthan Jackson <ethan@nicira.com>2011-01-31 14:59:27 -0800
commit656833530941ef21c1a59656a5572b5155d0c302 (patch)
treea014fba56afbb34c3915cfa48cb9167f1e81efe9 /tests/ovsdb-data.at
parent9e980142f482f44020f27e5acb7c29e9a8aba9b0 (diff)
tests: Fix tests with UCS-2 Python.
Python can be built with either UCS2 or UCS4 support. When built with UCS2 the python related surrogate pairs tests cannot pass. This commit handles this situation more gracefully.
Diffstat (limited to 'tests/ovsdb-data.at')
-rw-r--r--tests/ovsdb-data.at4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/ovsdb-data.at b/tests/ovsdb-data.at
index 98e81083..97369619 100644
--- a/tests/ovsdb-data.at
+++ b/tests/ovsdb-data.at
@@ -457,12 +457,12 @@ OVSDB_CHECK_POSITIVE_CPY([strings no more than 2 characters long],
'["a"]' \
'["ab"]' \
'["abc"]' \
- '["\ud834\udd1e"]']],
+ '["de"]']],
[[""
"a"
"ab"
constraint violation: "abc" length 3 is greater than maximum allowed length 2
-"𝄞"]])
+"de"]])
AT_BANNER([OSVDB -- simple data])