From: Aleksey Kladov Date: Mon, 16 Jan 2017 23:05:32 +0000 (+0300) Subject: Fix a test. X-Git-Tag: archive/raspbian/0.35.0-2+rpi1~3^2^2^2^2^2^2^2~22^2~11^2~30^2 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=2a9eacb1d0db4b247673d0a0eb1c1dd255edbd54;p=cargo.git Fix a test. Presumably, it should failed when it was first written, but Cargo does not do such validation yet. --- diff --git a/tests/workspaces.rs b/tests/workspaces.rs index 6d6be8a2d..1b2797f97 100644 --- a/tests/workspaces.rs +++ b/tests/workspaces.rs @@ -1196,6 +1196,7 @@ fn test_path_dependency_under_member() { [dependencies] foo = { path = "../foo" } + [workspace] "#) .file("ws/src/lib.rs", r"extern crate foo; pub fn f() { foo::f() }") .file("foo/Cargo.toml", r#"