summaryrefslogtreecommitdiffstats
path: root/tests/testsuite/python.rs
diff options
context:
space:
mode:
authorZhenhui Xie <xiezh0831@126.com>2019-09-27 11:18:24 +0800
committerMatan Kushner <hello@matchai.me>2019-09-27 12:18:24 +0900
commita56991cbc4b59bd1593bab20cf792ec0b1983156 (patch)
tree379b54605042dccc95ac428b8bbf3a87c8e51da7 /tests/testsuite/python.rs
parent90c8f897af1b088a7609eeb87cf92415052a3965 (diff)
style: Fix rustfmt formatting warnings in CI (#432)
Diffstat (limited to 'tests/testsuite/python.rs')
-rw-r--r--tests/testsuite/python.rs5
1 files changed, 1 insertions, 4 deletions
diff --git a/tests/testsuite/python.rs b/tests/testsuite/python.rs
index eba959ce5..718259c5c 100644
--- a/tests/testsuite/python.rs
+++ b/tests/testsuite/python.rs
@@ -119,10 +119,7 @@ fn with_virtual_env() -> io::Result<()> {
.output()?;
let actual = String::from_utf8(output.stdout).unwrap();
- let expected = format!(
- "via {} ",
- Color::Yellow.bold().paint("🐍 v3.6.9(my_venv)")
- );
+ let expected = format!("via {} ", Color::Yellow.bold().paint("🐍 v3.6.9(my_venv)"));
assert_eq!(expected, actual);
Ok(())
}