Skip to content

Commit e074653

Browse files
committed
Fixup Request::to_string()
1 parent c250318 commit e074653

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

turbopack/crates/turbopack-core/src/resolve/parse.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -772,7 +772,7 @@ impl ValueToString for Request {
772772
Request::Module { module, path, .. } => {
773773
if path.could_match_others("") {
774774
format!(
775-
"module \"{}\" with subpath {}",
775+
"module {} with subpath {}",
776776
module.describe_as_string(),
777777
path.describe_as_string()
778778
)
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ error - [resolve] /turbopack/crates/turbopack-tests/tests/snapshot/imports/resol
1010

1111

1212
| It was not possible to find the requested file.
13-
| Parsed request as written in source code: module "'does-not-exist'" with subpath '/path'
13+
| Parsed request as written in source code: module 'does-not-exist' with subpath '/path'
1414
| Path where resolving has started: [project]/turbopack/crates/turbopack-tests/tests/snapshot/imports/resolve_error_cjs/input/index.js
1515
| Type of request: commonjs request
1616
|
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ error - [resolve] /turbopack/crates/turbopack-tests/tests/snapshot/imports/resol
1111

1212

1313
| It was not possible to find the requested file.
14-
| Parsed request as written in source code: module "'does-not-exist'" with subpath '/path'
14+
| Parsed request as written in source code: module 'does-not-exist' with subpath '/path'
1515
| Path where resolving has started: [project]/turbopack/crates/turbopack-tests/tests/snapshot/imports/resolve_error_esm/input/index.js
1616
| Type of request: EcmaScript Modules (part) request
1717
|

0 commit comments

Comments
 (0)