Skip to content

Commit 9908a43

Browse files
author
Jamie Hannaford
committed
Merge branch 'pr/50'
2 parents f7f2243 + da56e34 commit 9908a43

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

tests/integration/Compute/v2/CoreTest.php

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,8 @@ protected function setUp()
9595
]
9696
);
9797

98+
$this->logStep('Created network {name} with id {id}', ['name' => $this->network->name, 'id' => $this->network->id]);
99+
98100
$this->subnet = $this->getNetworkService()->createSubnet(
99101
[
100102
'name' => self::SUBNET,
@@ -104,17 +106,17 @@ protected function setUp()
104106
]
105107
);
106108

109+
$this->logStep('Created subnet {name} with id {id}', ['name' => $this->subnet->name, 'id' => $this->subnet->id]);
110+
107111
$this->volume = $this->getBlockStorageService()->createVolume(
108112
[
109113
'name' => self::VOLUME,
110114
'description' => '',
111115
'size' => 1
112116
]
113117
);
114-
115-
$this->logger->info(sprintf('Created network %s with id %s', $this->network->name, $this->network->id));
116-
$this->logger->info(sprintf('Created subnet %s with id %s', $this->subnet->name, $this->subnet->id));
117-
$this->logger->info(sprintf('Created volume %s with id %s', $this->volume->name, $this->volume->id));
118+
119+
$this->logStep('Created volume {name} with id {id}', ['name' => $this->volume->name, 'id' => $this->volume->id]);
118120
}
119121

120122
public function runTests()

0 commit comments

Comments
 (0)