Remove leftovers of the old unit test

This commit is contained in:
Bo Maryniuk 2017-11-22 18:30:16 +01:00
parent e09c21bb8d
commit ac63d35703

View File

@ -491,18 +491,6 @@ class StateReturnsTestCase(TestCase):
TestCase for code handling state returns.
'''
def test_comment_lists_are_converted_to_string(self):
'''
Tests that states returning a list of comments
have that converted to a single string
'''
ret = {
'name': 'myresource',
'result': True,
'comment': ['comment 1', 'comment 2'],
'changes': {},
}
def test_state_output_check_changes_is_dict(self):
'''
Test that changes key contains a dictionary.