Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
michel-kraemer committed May 14, 2024
1 parent cd90f4d commit d404eaf
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/test/kotlin/cloud/CloudManagerTest.kt
Original file line number Diff line number Diff line change
Expand Up @@ -611,9 +611,9 @@ class CloudManagerTest {
testVolume2.type, null, false, AZ01, any()) } returns volumeId2
coEvery { client.createBlockDevice(testVolume3.sizeGb,
testVolume3.type, null, false, AZ02, any()) } returns volumeId3
coEvery { client.attachVolume(any(), volumeId1) } just Runs
coEvery { client.attachVolume(any(), volumeId2) } just Runs
coEvery { client.attachVolume(any(), volumeId3) } just Runs
coEvery { client.attachVolume(any(), volumeId1, null) } just Runs
coEvery { client.attachVolume(any(), volumeId2, null) } just Runs
coEvery { client.attachVolume(any(), volumeId3, null) } just Runs

CoroutineScope(vertx.dispatcher()).launch {
doCreateOnDemand(testSetupWithVolumes, vertx, ctx, 1)
Expand All @@ -632,9 +632,9 @@ class CloudManagerTest {
null, false, AZ01, any())
client.createBlockDevice(testVolume3.sizeGb, testVolume3.type,
null, false, AZ02, any())
client.attachVolume(any(), volumeId1)
client.attachVolume(any(), volumeId2)
client.attachVolume(any(), volumeId3)
client.attachVolume(any(), volumeId1, null)
client.attachVolume(any(), volumeId2, null)
client.attachVolume(any(), volumeId3, null)

client.getIPAddress(any())
}
Expand Down

0 comments on commit d404eaf

Please sign in to comment.