Skip to content

Commit

Permalink
updated with respect to sort-imports rule (#19066)
Browse files Browse the repository at this point in the history
  • Loading branch information
bzhang0 authored Dec 9, 2021
1 parent 5e85713 commit d810a31
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 10 deletions.
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.

import { CheckpointStore, PartitionOwnership, Checkpoint } from "@azure/event-hubs";
import { odata, TableClient, TableInsertEntityHeaders } from "@azure/data-tables";
import { logger, logErrorStackTrace } from "./log";
import { Checkpoint, CheckpointStore, PartitionOwnership } from "@azure/event-hubs";
import { TableClient, TableInsertEntityHeaders, odata } from "@azure/data-tables";
import { logErrorStackTrace, logger } from "./log";

/**
*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.

import { logger, logErrorStackTrace } from "../log";
import { logErrorStackTrace, logger } from "../log";

/**
* @internal
Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
import chai from "chai";
const should = chai.should();

import { AzureNamedKeyCredential, TableClient, TableServiceClient } from "@azure/data-tables";
import { Checkpoint, PartitionOwnership } from "@azure/event-hubs";
import { CheckpointEntity, PartitionOwnershipEntity } from "../src/tableCheckpointStore";
import { EnvVarKeys, getEnvVars } from "./utils/testUtils";
import { TableCheckpointStore } from "../src";
import chai from "chai";
import debugModule from "debug";

const should = chai.should();
const debug = debugModule("azure:event-hubs:tableCheckpointStore");
import { Checkpoint, PartitionOwnership } from "@azure/event-hubs";
import { EnvVarKeys, getEnvVars } from "./utils/testUtils";
import { TableServiceClient, AzureNamedKeyCredential, TableClient } from "@azure/data-tables";
import { CheckpointEntity, PartitionOwnershipEntity } from "../src/tableCheckpointStore";

const env = getEnvVars();

Expand Down

0 comments on commit d810a31

Please sign in to comment.