mirror of
https://github.com/denoland/deno.git
synced 2025-08-04 19:08:15 +00:00
chore: Use relative paths for assert imports to avoid test flakes (#19427)
Tests occasionally fail if we get a bad gateway attempting to fetch the assertion module
This commit is contained in:
parent
55f0150854
commit
db9482d688
9 changed files with 14 additions and 8 deletions
|
@ -1,6 +1,6 @@
|
|||
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
|
||||
|
||||
import { assertEquals } from "https://deno.land/std@v0.42.0/testing/asserts.ts";
|
||||
import { assertEquals } from "../../../test_util/std/testing/asserts.ts";
|
||||
import { assert, assertStringIncludes, unreachable } from "./test_util.ts";
|
||||
|
||||
Deno.test(async function sendAsyncStackTrace() {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
|
||||
|
||||
import { assertMatch } from "https://deno.land/std@v0.42.0/testing/asserts.ts";
|
||||
import { assertMatch } from "../../../test_util/std/testing/asserts.ts";
|
||||
import { Buffer, BufReader, BufWriter } from "../../../test_util/std/io/mod.ts";
|
||||
import { TextProtoReader } from "../testdata/run/textproto.ts";
|
||||
import {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue