Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
hardillb committed Jul 30, 2024
1 parent efb0789 commit 2b2cdc8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/unit/forge/ee/routes/api/pipeline_spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -2777,7 +2777,7 @@ describe('Pipelines API', function () {
}
it('locked fields should not be overridden', async function () {
const startTemplate = await app.factory.createProjectTemplate(
{
{
name: 'startTemplate',
settings: {
palette: {
Expand All @@ -2795,7 +2795,7 @@ describe('Pipelines API', function () {
)

const endTemplate = await app.factory.createProjectTemplate(
{
{
name: 'endTemplate',
settings: {
palette: {
Expand Down Expand Up @@ -2831,7 +2831,7 @@ describe('Pipelines API', function () {

const pipeline = await app.factory.createPipeline({ name: 'locked-fields-pipeine' }, app.application)
const startStage = await app.factory.createPipelineStage({ name: 'start', instanceId: instanceStart.id }, pipeline)
const endStage = await app.factory.createPipelineStage({ name: 'end', source: startStage.hashid, instanceId: instanceEnd.id }, pipeline)
await app.factory.createPipelineStage({ name: 'end', source: startStage.hashid, instanceId: instanceEnd.id }, pipeline)

const response = await app.inject({
method: 'PUT',
Expand Down

0 comments on commit 2b2cdc8

Please sign in to comment.