Skip to content

Commit d1becdb

Browse files
committed
fix import
1 parent 6628b12 commit d1becdb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/smoke/render/render-html.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import { testRender } from "./render.ts";
1111
import { fileLoader } from "../../utils.ts";
1212
import { join } from "path";
1313
import { assert } from "testing/asserts";
14-
import { isWindows } from "../../../src/core/platform.ts";
14+
import { isWindows } from "../../../src/deno_ral/platform.ts";
1515

1616
const testFile = fileLoader()("test.qmd", "html");
1717

@@ -23,7 +23,7 @@ testRender(testFile.input, "html", false, [], {
2323
assert(existsSync(bootstrapPath), `Expected ${bootstrapPath} to exist`);
2424
// Check that the bootstrap files have the correct mode
2525
// Related to #660, and #11532
26-
if (!isWindows()) {
26+
if (!isWindows) {
2727
const files = Deno.readDirSync(bootstrapPath);
2828
for (const file of files) {
2929
if (file.name.match(/bootstrap-.*\.min\.css$/)) {

0 commit comments

Comments
 (0)