Skip to content

Commit d93fb51

Browse files
committed
Fixing the test_app.py failure
1 parent 68ee0af commit d93fb51

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

rootfs/api/tests/test_app.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,8 @@ def test_response_data(self, mock_requests):
9090
body = {'id': 'app-{}'.format(random.randrange(1000, 10000))}
9191
response = self.client.post('/v2/apps', body)
9292
for key in response.data:
93-
self.assertIn(key, ['uuid', 'created', 'updated', 'id', 'owner', 'structure'])
93+
self.assertIn(key, ['uuid', 'created', 'updated', 'id', 'owner', 'structure',
94+
'procfile_structure'])
9495
expected = {
9596
'id': body['id'],
9697
'owner': self.user.username,

0 commit comments

Comments
 (0)