Skip to content

Commit 8a29378

Browse files
authored
Merge pull request #1231 from Lorak-mmk/ccm-ip-fix
Fix improper ip address formatting in CCM integration.
2 parents f1de757 + d9a1ed5 commit 8a29378

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scylla/tests/ccm_integration/ccm/ip_allocator.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ impl NetPrefix {
5757

5858
impl std::fmt::Display for NetPrefix {
5959
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
60-
write!(f, "{}", self.0)
60+
write!(f, "{}", self.to_str())
6161
}
6262
}
6363

0 commit comments

Comments
 (0)