1
0
mirror of https://github.com/nushell/nushell.git synced 2025-07-06 01:20:59 +02:00

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

@ -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())
);
}
}