File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed
tests/integration/Compute/v2 Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -95,6 +95,8 @@ protected function setUp()
95
95
]
96
96
);
97
97
98
+ $ this ->logStep ('Created network {name} with id {id} ' , ['name ' => $ this ->network ->name , 'id ' => $ this ->network ->id ]);
99
+
98
100
$ this ->subnet = $ this ->getNetworkService ()->createSubnet (
99
101
[
100
102
'name ' => self ::SUBNET ,
@@ -104,17 +106,17 @@ protected function setUp()
104
106
]
105
107
);
106
108
109
+ $ this ->logStep ('Created subnet {name} with id {id} ' , ['name ' => $ this ->subnet ->name , 'id ' => $ this ->subnet ->id ]);
110
+
107
111
$ this ->volume = $ this ->getBlockStorageService ()->createVolume (
108
112
[
109
113
'name ' => self ::VOLUME ,
110
114
'description ' => '' ,
111
115
'size ' => 1
112
116
]
113
117
);
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 ]);
118
120
}
119
121
120
122
public function runTests ()
You can’t perform that action at this time.
0 commit comments