We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a4f5a2 commit 8c99e20Copy full SHA for 8c99e20
tests/testsuite/build.rs
@@ -1230,7 +1230,7 @@ fn crate_env_vars() {
1230
homepage = "https://example.com"
1231
repository = "https://example.com/repo.git"
1232
authors = ["wycats@example.com"]
1233
- license = "MIT"
+ license = "MIT OR Apache-2.0"
1234
"#,
1235
)
1236
.file(
@@ -1260,7 +1260,7 @@ fn crate_env_vars() {
1260
assert_eq!("foo", PKG_NAME);
1261
assert_eq!("https://example.com", HOMEPAGE);
1262
assert_eq!("https://example.com/repo.git", REPOSITORY);
1263
- assert_eq!("MIT", LICENSE);
+ assert_eq!("MIT OR Apache-2.0", LICENSE);
1264
assert_eq!("This is foo", DESCRIPTION);
1265
let s = format!("{}.{}.{}-{}", VERSION_MAJOR,
1266
VERSION_MINOR, VERSION_PATCH, VERSION_PRE);
0 commit comments