Skip to content

Commit 4fdfe0c

Browse files
committed
Python 2 compatibility.
1 parent 916d538 commit 4fdfe0c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_make_caster_adl.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ def test_mock_caster():
1010

1111
def test_minimal_real_caster():
1212
assert m.obj_mrc_return() == 1404
13-
assert m.obj_mrc_arg("ignored") == 2303
13+
assert m.obj_mrc_arg(u"ignored") == 2303
1414
with pytest.raises(TypeError) as excinfo:
1515
m.obj_mrc_arg(None)
1616
assert "(arg0: adl_mrc::type_mrc) -> int" in str(excinfo.value)

0 commit comments

Comments
 (0)