summaryrefslogtreecommitdiff
path: root/tests/lib3/test_yaml_ext.py
diff options
context:
space:
mode:
authorxi <xi@18f92427-320e-0410-9341-c67f048884a3>2008-12-30 13:30:52 +0000
committerxi <xi@18f92427-320e-0410-9341-c67f048884a3>2008-12-30 13:30:52 +0000
commit1ade43b5ac1f866ace28edd4c3a5dddfbf4e01eb (patch)
tree2c7d16dcf701bfb0a4a1e14d4eb67d8c4c4742ec /tests/lib3/test_yaml_ext.py
parent5786709db70a02fb5d2ab88d70262f20015be0b4 (diff)
downloadpyyaml-1ade43b5ac1f866ace28edd4c3a5dddfbf4e01eb.tar.gz
Fixed str/bytes issues with Python 3 in _yaml.pyx.
git-svn-id: http://svn.pyyaml.org/pyyaml/trunk@334 18f92427-320e-0410-9341-c67f048884a3
Diffstat (limited to 'tests/lib3/test_yaml_ext.py')
-rw-r--r--tests/lib3/test_yaml_ext.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/lib3/test_yaml_ext.py b/tests/lib3/test_yaml_ext.py
index 8e36e5d..93d397b 100644
--- a/tests/lib3/test_yaml_ext.py
+++ b/tests/lib3/test_yaml_ext.py
@@ -261,9 +261,9 @@ def wrap_ext(collections):
globals()[function.__name__] = function
import test_tokens, test_structure, test_errors, test_resolver, test_constructor, \
- test_emitter, test_representer, test_recursive
+ test_emitter, test_representer, test_recursive, test_input_output
wrap_ext([test_tokens, test_structure, test_errors, test_resolver, test_constructor,
- test_emitter, test_representer, test_recursive])
+ test_emitter, test_representer, test_recursive, test_input_output])
if __name__ == '__main__':
import test_appliance