Skip to content

Commit

Permalink
chore: cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
Mohammad-Dwairi committed Jan 14, 2025
1 parent 2a073fd commit 43f4c4b
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class ExecutionPipelineTest {
}

@Test
fun `startRequestPipeline should apply all request pipeline steps`() {
fun `should apply all request pipeline steps`() {
// Arrange
val initialRequest = mockk<Request>()
val intermediateRequest = mockk<Request>()
Expand All @@ -51,7 +51,7 @@ class ExecutionPipelineTest {
}

@Test
fun `startRequestPipeline should return initial request if pipeline is empty`() {
fun `should return initial request if request pipeline is empty`() {
// Arrange
val initialRequest = mockk<Request>()

Expand All @@ -69,7 +69,7 @@ class ExecutionPipelineTest {
}

@Test
fun `startResponsePipeline should apply all response pipeline steps`() {
fun `should apply all response pipeline steps`() {
// Arrange
val initialResponse = mockk<Response>()
val intermediateResponse = mockk<Response>()
Expand All @@ -96,7 +96,7 @@ class ExecutionPipelineTest {
}

@Test
fun `startResponsePipeline should return initial response if pipeline is empty`() {
fun `should return initial response if response pipeline is empty`() {
// Arrange
val initialResponse = mockk<Response>()

Expand Down

0 comments on commit 43f4c4b

Please sign in to comment.