diff --git a/tests/end2end/createEtForm.spec.js b/tests/end2end/createEtForm.spec.js index a7eedd8..fcc0333 100644 --- a/tests/end2end/createEtForm.spec.js +++ b/tests/end2end/createEtForm.spec.js @@ -25,7 +25,7 @@ describe('Create Event type form', function() { .isEnabled('button=Create Event Type').then(function(enabled) { expect(enabled).toBeFalsy('Submit btn should be disabled if owning application is not set') }) - .setValue('#eventTypeCreateFormFieldOwningApplication', 'some-owning-app') + .setValue('#eventTypeCreateFormFieldOwningApplication', 'stups_nakadi-ui-elm') .isEnabled('button=Create Event Type').then(function(enabled) { expect(enabled).toBeTruthy('Submit btn should be enabled if name and owning app are set') }) diff --git a/tests/end2end/createSubscriptionForm.spec.js b/tests/end2end/createSubscriptionForm.spec.js index 4979595..0d1df08 100644 --- a/tests/end2end/createSubscriptionForm.spec.js +++ b/tests/end2end/createSubscriptionForm.spec.js @@ -21,7 +21,7 @@ describe('Create Subscription form', function() { }) .setValue('#subscriptionCreateFormFieldConsumerGroup', 'test-group') .setValue('#subscriptionCreateFormFieldEventTypes', eventTypeName) - .setValue('#subscriptionCreateFormFieldOwningApplication', 'someowningapplication') + .setValue('#subscriptionCreateFormFieldOwningApplication', 'stups_nakadi-ui-elm') .isEnabled('button=Create Subscription').then(function(enabled) { expect(enabled).toBeTruthy('Submit btn should be enabled if name is set') })