From fd6619c9dc08ef10405fd0cfaddf3a90f6995934 Mon Sep 17 00:00:00 2001 From: Zach Leatherman Date: Sat, 20 Apr 2024 15:52:26 -0500 Subject: [PATCH] Fix another Windows path --- test/transform-test.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/transform-test.mjs b/test/transform-test.mjs index 22a6f92..64d90b4 100644 --- a/test/transform-test.mjs +++ b/test/transform-test.mjs @@ -51,7 +51,7 @@ test("Using the transform plugin with transform on request during dev mode", asy }); let results = await elev.toJSON(); - t.is(results[0].content, `My ugly mug`); + t.is(normalizeEscapedPaths(results[0].content), `My ugly mug`); }); test("Using the transform plugin with transform on request during dev mode (with default attributes)", async t => {