about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPhilipp Krones <hello@philkrones.com>2020-03-14 10:22:49 +0100
committerGitHub <noreply@github.com>2020-03-14 10:22:49 +0100
commit626f2fe1cb68e88d7efe62822f4601217d2870ae (patch)
tree9c572971e4d9b3a0b8a309a8a653120e56bb2d15
parent34a00fe7f47e592bc777b1a8e04df11b601b0888 (diff)
downloadrust-626f2fe1cb68e88d7efe62822f4601217d2870ae.tar.gz
rust-626f2fe1cb68e88d7efe62822f4601217d2870ae.zip
Fix typo
Co-Authored-By: Mateusz MikuĊ‚a <mati865@users.noreply.github.com>
-rw-r--r--tests/integration.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/integration.rs b/tests/integration.rs
index 93dd66008f4..0efbec18b4f 100644
--- a/tests/integration.rs
+++ b/tests/integration.rs
@@ -20,7 +20,7 @@ fn integration_test() {
     let st = Command::new("git")
         .args(&["clone", "--depth=1", &repo_url, repo_dir.to_str().unwrap()])
         .status()
-        .expect("unstable to run git");
+        .expect("unable to run git");
     assert!(st.success());
 
     let root_dir = std::path::PathBuf::from(env!("CARGO_MANIFEST_DIR"));