Skip to content

Commit c85a4d2

Browse files
authored
updated with respect to sort-imports rule (Azure#19047)
1 parent 0d04fff commit c85a4d2

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

sdk/core/core-util/test/browser/isNode.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
// Copyright (c) Microsoft Corporation.
22
// Licensed under the MIT license.
33

4-
import { isNode } from "../../src";
54
import { assert } from "chai";
5+
import { isNode } from "../../src";
66

77
describe("isNode (browser)", function() {
88
it("should return false", async function() {

sdk/core/core-util/test/delay.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
// Copyright (c) Microsoft Corporation.
22
// Licensed under the MIT license.
33

4-
import { delay } from "../src";
5-
import { assert } from "chai";
64
import * as sinon from "sinon";
5+
import { assert } from "chai";
6+
import { delay } from "../src";
77

88
describe("delay", function() {
99
afterEach(function() {

sdk/core/core-util/test/node/isNode.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
// Copyright (c) Microsoft Corporation.
22
// Licensed under the MIT license.
33

4-
import { isNode } from "../../src";
54
import { assert } from "chai";
5+
import { isNode } from "../../src";
66

77
describe("isNode (node)", function() {
88
it("should return true", async function() {

0 commit comments

Comments
 (0)