summaryrefslogtreecommitdiffstats
path: root/src/tools/cargo/tests/testsuite/profile_config.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/cargo/tests/testsuite/profile_config.rs')
-rw-r--r--src/tools/cargo/tests/testsuite/profile_config.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/tools/cargo/tests/testsuite/profile_config.rs b/src/tools/cargo/tests/testsuite/profile_config.rs
index 710a0d8ef..f8a9ae744 100644
--- a/src/tools/cargo/tests/testsuite/profile_config.rs
+++ b/src/tools/cargo/tests/testsuite/profile_config.rs
@@ -1,6 +1,6 @@
//! Tests for profiles defined in config files.
-use cargo::util::toml::schema::TomlDebugInfo;
+use cargo::util_schemas::manifest::TomlDebugInfo;
use cargo_test_support::paths::CargoPathExt;
use cargo_test_support::registry::Package;
use cargo_test_support::{basic_lib_manifest, paths, project};
@@ -428,8 +428,8 @@ fn named_config_profile() {
let profiles = Profiles::new(&ws, profile_name).unwrap();
let crates_io = cargo::core::SourceId::crates_io(&config).unwrap();
- let a_pkg = PackageId::new("a", "0.1.0", crates_io).unwrap();
- let dep_pkg = PackageId::new("dep", "0.1.0", crates_io).unwrap();
+ let a_pkg = PackageId::try_new("a", "0.1.0", crates_io).unwrap();
+ let dep_pkg = PackageId::try_new("dep", "0.1.0", crates_io).unwrap();
// normal package
let kind = CompileKind::Host;