Skip to content

Commit 67ce0d4

Browse files
committed
Adjust import order
1 parent 0546919 commit 67ce0d4

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ import { version } from "../version.ts";
22
import https from "node:https";
33
import http from "node:http";
44
import qs from "node:querystring";
5+
import process from "node:process";
56
import { RequestTimeoutError } from "./errors.ts";
67
import { config } from "./config.ts";
7-
import process from "node:process";
88

99
/**
1010
* This `_internals` object is needed to support stubbing/spying of

tests/utils_test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
import http from "node:http";
2+
import qs from "node:querystring";
13
import { loadSync } from "https://deno.land/std@0.170.0/dotenv/mod.ts";
24
import {
35
afterAll,
@@ -19,8 +21,6 @@ import {
1921
} from "../src/utils.ts";
2022
import { RequestTimeoutError } from "../src/errors.ts";
2123
import { Config, config } from "../src/config.ts";
22-
import http from "node:http";
23-
import qs from "node:querystring";
2424

2525
loadSync({ export: true });
2626
const BASE_OPTIONS = {

0 commit comments

Comments
 (0)