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 84c943d commit c358294Copy full SHA for c358294
codegen-core/src/main/kotlin/software/amazon/smithy/rust/codegen/core/testutil/Rust.kt
@@ -61,12 +61,12 @@ private object Commands {
61
62
private const val allFeature = "--all-features"
63
64
- fun cargoTest(enableUnstable: Boolean): String {
65
- return func("cargo test", allFeature, enableUnstable)
+ fun cargoTest(enableAllFeatures: Boolean): String {
+ return func("cargo test", allFeature, enableAllFeatures)
66
}
67
68
- fun cargoCheck(enableUnstable: Boolean): String {
69
- return func("cargo check", allFeature, enableUnstable)
+ fun cargoCheck(enableAllFeatures: Boolean): String {
+ return func("cargo check", allFeature, enableAllFeatures)
70
71
72
const val CargoFmt = "cargo fmt"
0 commit comments