Skip to content

Commit fa38115

Browse files
authored
Fix some KV-related wasm32 test issues (#2230)
1 parent 63847a5 commit fa38115

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sdk/keyvault/azure_security_keyvault_keys/tests/key_client.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ use azure_security_keyvault_test::Retry;
1717
use futures::TryStreamExt;
1818
use std::collections::HashMap;
1919

20+
#[cfg(not(target_arch = "wasm32"))]
2021
const REMOVE_SANITIZERS: &[&str] = &[
2122
// BodyKeySanitizer("$..id"): the resource ID contains the required name and version.
2223
"AZSDK3430",

sdk/keyvault/azure_security_keyvault_secrets/tests/secret_client.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ use azure_security_keyvault_test::Retry;
1313
use futures::TryStreamExt;
1414
use std::collections::HashMap;
1515

16+
#[cfg(not(target_arch = "wasm32"))]
1617
const REMOVE_SANITIZERS: &[&str] = &[
1718
// BodyKeySanitizer("$..id"): the resource ID contains the required name and version.
1819
"AZSDK3430",

0 commit comments

Comments
 (0)