diff options
author | Geert-Jan Zwiers <34610306+GJZwiers@users.noreply.github.com> | 2022-03-11 01:57:57 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-10 19:57:57 -0500 |
commit | 38e88e32b79cf9605b57751802aef1ebff924d98 (patch) | |
tree | 03b18cc4d04c3115ed5ab3dafda7c8c49fd352cc /cli/tests | |
parent | 8dc26971ecf2bac3d2448337cb5c8d6037cdcf8a (diff) |
fix(info): print deno info paths with unescaped backslashes on windows (#13847)
Diffstat (limited to 'cli/tests')
-rw-r--r-- | cli/tests/testdata/041_info_flag.out | 10 | ||||
-rw-r--r-- | cli/tests/testdata/041_info_flag_location.out | 12 |
2 files changed, 11 insertions, 11 deletions
diff --git a/cli/tests/testdata/041_info_flag.out b/cli/tests/testdata/041_info_flag.out index ded795339..cb94386e8 100644 --- a/cli/tests/testdata/041_info_flag.out +++ b/cli/tests/testdata/041_info_flag.out @@ -1,5 +1,5 @@ -DENO_DIR location: "[WILDCARD]" -Remote modules cache: "[WILDCARD]deps" -Emitted modules cache: "[WILDCARD]gen" -Language server registries cache: "[WILDCARD]registries" -Origin storage: "[WILDCARD]location_data" +DENO_DIR location: [WILDCARD] +Remote modules cache: [WILDCARD]deps +Emitted modules cache: [WILDCARD]gen +Language server registries cache: [WILDCARD]registries +Origin storage: [WILDCARD]location_data diff --git a/cli/tests/testdata/041_info_flag_location.out b/cli/tests/testdata/041_info_flag_location.out index 207065012..fa111cf18 100644 --- a/cli/tests/testdata/041_info_flag_location.out +++ b/cli/tests/testdata/041_info_flag_location.out @@ -1,6 +1,6 @@ -DENO_DIR location: "[WILDCARD]" -Remote modules cache: "[WILDCARD]deps" -Emitted modules cache: "[WILDCARD]gen" -Language server registries cache: "[WILDCARD]registries" -Origin storage: "[WILDCARD]location_data[WILDCARD]" -Local Storage: "[WILDCARD]location_data[WILDCARD]local_storage" +DENO_DIR location: [WILDCARD] +Remote modules cache: [WILDCARD]deps +Emitted modules cache: [WILDCARD]gen +Language server registries cache: [WILDCARD]registries +Origin storage: [WILDCARD]location_data[WILDCARD] +Local Storage: [WILDCARD]location_data[WILDCARD]local_storage |