File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -2,9 +2,9 @@ import { version } from "../version.ts";
22import https from "node:https" ;
33import http from "node:http" ;
44import qs from "node:querystring" ;
5+ import process from "node:process" ;
56import { RequestTimeoutError } from "./errors.ts" ;
67import { config } from "./config.ts" ;
7- import process from "node:process" ;
88
99/**
1010 * This `_internals` object is needed to support stubbing/spying of
Original file line number Diff line number Diff line change 1+ import http from "node:http" ;
2+ import qs from "node:querystring" ;
13import { loadSync } from "https://deno.land/std@0.170.0/dotenv/mod.ts" ;
24import {
35 afterAll ,
@@ -19,8 +21,6 @@ import {
1921} from "../src/utils.ts" ;
2022import { RequestTimeoutError } from "../src/errors.ts" ;
2123import { Config , config } from "../src/config.ts" ;
22- import http from "node:http" ;
23- import qs from "node:querystring" ;
2424
2525loadSync ( { export : true } ) ;
2626const BASE_OPTIONS = {
You can’t perform that action at this time.
0 commit comments