Commit 44d4d3d6 authored by Stefan Behnel's avatar Stefan Behnel

remove incorrect test assumption

parent 4571ec70
......@@ -61,7 +61,7 @@ def basestring_typed_variable(obj):
s = 'abc'
assert s
# make sure coercion also works in conditional expressions
s = u'abc' if obj else b'abc' if obj else 'abc'
s = u'abc' if obj else 'abc'
assert s
s = obj
return s
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment