Skip to content

Commit

Permalink
Merge pull request #1231 from Lorak-mmk/ccm-ip-fix
Browse files Browse the repository at this point in the history
Fix improper ip address formatting in CCM integration.
  • Loading branch information
Lorak-mmk authored Feb 12, 2025
2 parents f1de757 + d9a1ed5 commit 8a29378
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scylla/tests/ccm_integration/ccm/ip_allocator.rs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ impl NetPrefix {

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

Expand Down

0 comments on commit 8a29378

Please sign in to comment.