From e66d3c2c2e287879a757e12943a6d240981cb9e8 Mon Sep 17 00:00:00 2001 From: David Sherret Date: Thu, 14 Sep 2023 13:51:28 -0400 Subject: refactor: remove `DENO_UNSTABLE_NPM_SYNC_DOWNLOAD` and custom sync functionality (#20504) https://github.com/denoland/deno/pull/20488 enables us to remove this functionality. This is better because our test suite is now not testing a separate code path. --- test_util/src/assertions.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'test_util/src/assertions.rs') diff --git a/test_util/src/assertions.rs b/test_util/src/assertions.rs index 91ac9dd1c..abe782127 100644 --- a/test_util/src/assertions.rs +++ b/test_util/src/assertions.rs @@ -54,7 +54,8 @@ macro_rules! assert_not_contains { #[track_caller] pub fn assert_wildcard_match(actual: &str, expected: &str) { - if !expected.contains("[WILDCARD]") && !expected.contains("[IGNORE_START]") { + if !expected.contains("[WILDCARD]") && !expected.contains("[UNORDERED_START]") + { pretty_assertions::assert_eq!(actual, expected); } else { match crate::wildcard_match_detailed(expected, actual) { -- cgit v1.2.3