Tests: Fix ipatests/test_ipaserver/test_rpcserver.py

Removed no longer valid assert.

Reviewed-By: Oleg Fayans <ofayans@redhat.com>
This commit is contained in:
Lenka Doudova 2016-06-24 10:24:40 +02:00 committed by Martin Basti
parent 13328bc751
commit d64513f1ff

View File

@ -212,7 +212,6 @@ class test_jsonserver(PluginTester):
# Test with invalid JSON-data:
e = raises(errors.JSONError, o.unmarshal, 'this wont work')
assert isinstance(e.error, ValueError)
if six.PY2:
assert unicode(e.error) == 'No JSON object could be decoded'
else: