Skip to content

Commit 353e003

Browse files
committed
T: Update rustc target triple list
1. List of Tier 1 targets was outdated. 2. The `wasm32-wasi` target was removed in rust-lang/rust@7303555.
1 parent 6159161 commit 353e003

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/test/kotlin/org/rust/cargo/util/CargoWithToolchainCommandCompletionProviderTest.kt

+4-4
Original file line numberDiff line numberDiff line change
@@ -33,16 +33,16 @@ class CargoWithToolchainCommandCompletionProviderTest : RsWithToolchainTestBase(
3333
completions,
3434
// Tier 1
3535
"aarch64-unknown-linux-gnu",
36+
"aarch64-apple-darwin",
3637
"i686-pc-windows-gnu",
3738
"i686-pc-windows-msvc",
38-
"i686-pc-windows-msvc",
39+
"i686-unknown-linux-gnu",
3940
"x86_64-apple-darwin",
4041
"x86_64-pc-windows-gnu",
4142
"x86_64-pc-windows-msvc",
42-
"x86_64-pc-windows-gnu",
43+
"x86_64-unknown-linux-gnu",
4344
// Other popular
44-
"wasm32-unknown-unknown",
45-
"wasm32-wasi"
45+
"wasm32-unknown-unknown"
4646
)
4747
}
4848
}

0 commit comments

Comments
 (0)