Skip to content

Commit

Permalink
Fix expected name of output filename on Windows in TraceNameManglingTest
Browse files Browse the repository at this point in the history
  • Loading branch information
WojciechMazur committed Nov 13, 2024
1 parent 6f48c39 commit 3a77dd7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ class TraceNameManglingTest extends DottyTest {
raw"setter /\\_="
).map(TraceEvent("typecheck", _))
++ Set(
TraceEvent("file", if isWindows then "/.scala" else "\\\\.scala")
TraceEvent("file", if isWindows then ".scala" else "\\\\.scala")
)
)
}
Expand Down

0 comments on commit 3a77dd7

Please sign in to comment.