Skip to content

Commit f2a2745

Browse files
committed
Fix reportOfflineCauseInCloudStats
1 parent e0408c8 commit f2a2745

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

plugin/src/test/java/jenkins/plugins/openstack/compute/ProvisioningTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -415,7 +415,7 @@ public void reportOfflineCauseInCloudStats() throws Exception {
415415
List<PhaseExecutionAttachment> attachments = pa.getPhaseExecution(ProvisioningActivity.Phase.COMPLETED).getAttachments();
416416
assertThat(attachments, Matchers.iterableWithSize(1));
417417
PhaseExecutionAttachment att = attachments.get(0);
418-
assertEquals("0.000GB left on /Fake/it.", att.getTitle());
418+
assertEquals("42 B out of 0 ]B left on /Fake/it.", att.getTitle());
419419

420420
slave = j.provision(cloud, "label");
421421
Thread.sleep(200); // This relies on being past the startTimeout

0 commit comments

Comments
 (0)