minidom: Replace IPv4 test with IPv6

This makes the tests pass again on nightly, and avoids using legacy IP
while we have glorious IPv6 support everywhere nowadays.

See also https://github.com/rust-lang/rust/issues/90199
This commit is contained in:
Emmanuel Gil Peyrot 2021-12-01 18:09:03 +01:00
parent 4766a01d01
commit 7ddf5e5c33

View file

@ -84,11 +84,11 @@ mod tests {
assert_eq!(18i32.into_attribute_value().unwrap(), "18");
assert_eq!((-19i64).into_attribute_value().unwrap(), "-19");
assert_eq!(
IpAddr::from_str("127.000.0.1")
IpAddr::from_str("0000:0::1")
.unwrap()
.into_attribute_value()
.unwrap(),
"127.0.0.1"
"::1"
);
}
}