diff --git a/crates/extension_host/src/wasm_host/wit.rs b/crates/extension_host/src/wasm_host/wit.rs index b124ded22c2be60a813a0ba411cbddbfd0bcd13b..aadb1ab77a95729dee5bf6cec42716a7bc83b47c 100644 --- a/crates/extension_host/src/wasm_host/wit.rs +++ b/crates/extension_host/src/wasm_host/wit.rs @@ -81,7 +81,7 @@ impl Extension { if version >= latest::MIN_VERSION { // Note: The release channel can be used to stage a new version of the extension API. // We always allow the latest in tests so that the extension tests pass on release branches. - let allow_latest_version = match dbg!(release_channel) { + let allow_latest_version = match release_channel { ReleaseChannel::Dev | ReleaseChannel::Nightly => true, ReleaseChannel::Stable | ReleaseChannel::Preview => cfg!(test), };