We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2af5f07 commit 0fa4dfdCopy full SHA for 0fa4dfd
1 file changed
tests/CLI/modules/server_tests.py
@@ -397,8 +397,9 @@ def test_create_server(self, order_mock):
397
])
398
399
self.assert_no_fail(result)
400
- self.assertEqual(json.loads(result.output),
401
- {'id': 98765, 'created': '2013-08-02 15:23:47'})
+ self.assertEqual(
+ str(result.output),
402
+ 'Warning: Closed soon: TEST00.pod2\n{\n "id": 98765,\n "created": "2013-08-02 15:23:47"\n}\n')
403
404
@mock.patch('SoftLayer.CLI.template.export_to_template')
405
def test_create_server_with_export(self, export_mock):
0 commit comments