File tree Expand file tree Collapse file tree 1 file changed +11
-11
lines changed
orca-qos/src/test/kotlin/com/netflix/spinnaker/orca/qos Expand file tree Collapse file tree 1 file changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -73,19 +73,19 @@ class DefaultExecutionPromoterTest : SubjectSpek<DefaultExecutionPromoter>({
73
73
74
74
on("promote schedule") {
75
75
subject.tick()
76
+ }
76
77
77
- it("promotes all policy-selected candidate executions via status update") {
78
- assertThat(execution1.status).isEqualTo(NOT_STARTED )
79
- assertThat(execution2.status).isEqualTo(NOT_STARTED )
80
- verify(executionRepository).updateStatus(execution1)
81
- verify(executionRepository).updateStatus(execution2)
82
- }
78
+ it("promotes all policy-selected candidate executions via status update") {
79
+ assertThat(execution1.status).isEqualTo(NOT_STARTED )
80
+ assertThat(execution2.status).isEqualTo(NOT_STARTED )
81
+ verify(executionRepository).updateStatus(execution1)
82
+ verify(executionRepository).updateStatus(execution2)
83
+ }
83
84
84
- it("starts the executions immediately") {
85
- verify(executionLauncher).start(execution1)
86
- verify(executionLauncher).start(execution2)
87
- verifyNoMoreInteractions(executionLauncher)
88
- }
85
+ it("starts the executions immediately") {
86
+ verify(executionLauncher).start(execution1)
87
+ verify(executionLauncher).start(execution2)
88
+ verifyNoMoreInteractions(executionLauncher)
89
89
}
90
90
}
91
91
}
You can’t perform that action at this time.
0 commit comments