Appease pylint

Reviewed-By: David Kupka <dkupka@redhat.com>
Reviewed-By: Jan Cholasta <jcholast@redhat.com>
Reviewed-By: Martin Basti <mbasti@redhat.com>
This commit is contained in:
Petr Viktorin
2015-09-23 13:45:38 +02:00
committed by Jan Cholasta
parent dd0bfefae8
commit f82d3da1e8

View File

@@ -65,6 +65,7 @@ def test_round_trip():
# standard library are correct: # standard library are correct:
assert_equal(dump_n_load(utf8_bytes), unicode_str) assert_equal(dump_n_load(utf8_bytes), unicode_str)
assert_equal(dump_n_load(unicode_str), unicode_str) assert_equal(dump_n_load(unicode_str), unicode_str)
# "Binary" is not "str". pylint: disable=no-member
assert_equal(dump_n_load(Binary(binary_bytes)).data, binary_bytes) assert_equal(dump_n_load(Binary(binary_bytes)).data, binary_bytes)
assert isinstance(dump_n_load(Binary(binary_bytes)), Binary) assert isinstance(dump_n_load(Binary(binary_bytes)), Binary)
assert type(dump_n_load(b'hello')) is bytes assert type(dump_n_load(b'hello')) is bytes
@@ -101,6 +102,7 @@ def test_xml_wrap():
assert f({}, API_VERSION) == dict() assert f({}, API_VERSION) == dict()
b = f(b'hello', API_VERSION) b = f(b'hello', API_VERSION)
assert isinstance(b, Binary) assert isinstance(b, Binary)
# "Binary" is not "dict" or "tuple". pylint: disable=no-member
assert b.data == b'hello' assert b.data == b'hello'
u = f(u'hello', API_VERSION) u = f(u'hello', API_VERSION)
assert type(u) is unicode assert type(u) is unicode