From 7f4704da55fda28d68eb219d4b3d0469675351fb Mon Sep 17 00:00:00 2001 From: Tom Scanlan Date: Tue, 19 Sep 2023 22:44:38 -0400 Subject: [PATCH] fmt --- tests/testsuite/test.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/testsuite/test.rs b/tests/testsuite/test.rs index f38faf8bde9..4a63747dd45 100644 --- a/tests/testsuite/test.rs +++ b/tests/testsuite/test.rs @@ -56,13 +56,13 @@ fn cargo_test_tensorflow_not_failing_due_to_shared_library() { // git repo for cargo project containing doctests that require shared libraries let url = "https://github.com/tensorflow/rust"; - + // safe place to git clone into let path = tempfile::tempdir().unwrap(); // do the git clone let _repo = RepoBuilder::new().clone(&url, &path.path()).unwrap(); - + // pathbuf to the resulting local cloned repo let path_copy = path.path().to_path_buf(); @@ -72,7 +72,7 @@ fn cargo_test_tensorflow_not_failing_due_to_shared_library() { // now we have a handle on a project we can use let project = Project::from_template(path_copy.clone()); - // doctests are failing.. + // doctests are failing.. project .cargo("test --doc") .with_stdout_does_not_contain("error while loading shared libraries")