Skip to content
This repository was archived by the owner on Jun 2, 2021. It is now read-only.

Commit e3f0e2d

Browse files
sethboylesJaskanwal Pawar
andcommitted
Fix app summary test -- don't hard code app name
Co-authored-by: Seth Boyles <sboyles@pivotal.io> Co-authored-by: Jaskanwal Pawar <jpawar@pivotal.io>
1 parent bfe720b commit e3f0e2d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

spec/unit/controllers/runtime/apps_controller_spec.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -577,7 +577,7 @@ def update_app
577577
'updated_at' => anything
578578
})
579579
expect(decoded_response['entity']).to include({
580-
'name' => 'name-1',
580+
'name' => process.app.name,
581581
'production' => false,
582582
'space_guid' => process.space.guid.to_s,
583583
'stack_guid' => process.stack.guid.to_s,
@@ -634,7 +634,7 @@ def update_app
634634
'updated_at' => anything
635635
})
636636
expect(decoded_response['entity']).to include({
637-
'name' => 'name-1',
637+
'name' => process.app.name,
638638
'production' => false,
639639
'space_guid' => process.space.guid.to_s,
640640
'stack_guid' => process.stack.guid.to_s,

0 commit comments

Comments
 (0)