Update str.rs

This commit is contained in:
Jonathan Turner 2019-11-02 17:25:20 +13:00 committed by GitHub
parent 763bbe1c01
commit 2260b3dda3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -700,6 +700,9 @@ mod tests {
.create()
)
.is_err());
assert_eq!(plugin.error, Some("End must be greater than or equal to Start".to_string()));
assert_eq!(
plugin.error,
Some("End must be greater than or equal to Start".to_string())
);
}
}