fix py32 incompatible syntax

This commit is contained in:
holger krekel 2013-02-14 12:17:23 +01:00
parent 3785f1aae3
commit 857c99d354
1 changed files with 1 additions and 1 deletions

View File

@ -118,7 +118,7 @@ class TestMetafunc:
(object(), object())])
assert result == ["a0-1.0", "a1-b1"]
# unicode mixing, issue250
result = idmaker((u"a", "b"), [({}, '\xc3\xb4')])
result = idmaker((py.builtin._totext("a"), "b"), [({}, '\xc3\xb4')])
assert result == ['a0-\xc3\xb4']