summaryrefslogtreecommitdiff
path: root/_test/lib
diff options
context:
space:
mode:
authorAnthon van der Neut <anthon@mnt.org>2018-06-27 10:10:18 +0200
committerAnthon van der Neut <anthon@mnt.org>2018-06-27 10:10:18 +0200
commitd827dd3f0e3dbee1eebf35e34d56f936314ba2bb (patch)
treea7940dc97bfe92afe328f5866d20e8afa7309727 /_test/lib
parenta16eb0f1cb816dcf8ed59ccd130098f419db98da (diff)
downloadruamel.yaml-d827dd3f0e3dbee1eebf35e34d56f936314ba2bb.tar.gz
re-added test to make sure C-Compiler is available0.15.41
Diffstat (limited to '_test/lib')
-rw-r--r--_test/lib/test_input_output.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/_test/lib/test_input_output.py b/_test/lib/test_input_output.py
index d83cb5a..27f7aed 100644
--- a/_test/lib/test_input_output.py
+++ b/_test/lib/test_input_output.py
@@ -167,8 +167,8 @@ else:
assert isinstance(data2, str), (type(data2), encoding)
data2.decode('utf-8')
if encoding is None:
- assert isinstance(data3, unicode), (type(data3), encoding) # NOQA
- assert isinstance(data4, unicode), (type(data4), encoding) # NOQA
+ assert isinstance(data3, unicode), (type(data3), encoding) # NOQA
+ assert isinstance(data4, unicode), (type(data4), encoding) # NOQA
else:
assert isinstance(data3, str), (type(data3), encoding)
data3.decode(encoding)