Skip to content

Commit

Permalink
#1423 Creating a deployment directly in DONE state - fixing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
dcoraboeuf committed Feb 21, 2025
1 parent 77d4cd3 commit 0487b1f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ class SlotPipelineIT : AbstractDSLTestSupport() {
assertEquals(SlotPipelineStatus.DONE, it.status)
assertEquals("Deployment forced", it.message)
assertEquals(SlotPipelineChangeType.STATUS, it.type)
assertEquals("Deployment was marked done manually.", it.overrideMessage)
assertEquals("Deployment forced", it.overrideMessage)
}
}
}
Expand Down Expand Up @@ -422,7 +422,7 @@ class SlotPipelineIT : AbstractDSLTestSupport() {
assertEquals(SlotPipelineStatus.DONE, it.status)
assertEquals("Forcing a done pipeline", it.message)
assertEquals(SlotPipelineChangeType.STATUS, it.type)
assertEquals("Deployment was marked done manually.", it.overrideMessage)
assertEquals("Forcing a done pipeline", it.overrideMessage)
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -865,7 +865,7 @@ class SlotPipelineGraphQLIT : AbstractQLKTITSupport() {
assertEquals(SlotPipelineStatus.DONE, it.status)
assertEquals("Direct done", it.message)
assertEquals(SlotPipelineChangeType.STATUS, it.type)
assertEquals("Deployment was marked done manually.", it.overrideMessage)
assertEquals("Direct done", it.overrideMessage)
}
}
}
Expand Down

0 comments on commit 0487b1f

Please sign in to comment.