Skip to content

Commit 1f2be7c

Browse files
committed
update imports
1 parent 351c302 commit 1f2be7c

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

src/app.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import {
66
OrchestrationOptions,
77
} from "durable-functions";
88
import * as trigger from "./trigger";
9-
import { createOrchestrator, createEntityFunction } from "./testingUtils";
9+
import { createOrchestrator, createEntityFunction } from "./util/testingUtils";
1010
import { app as azFuncApp } from "@azure/functions";
1111

1212
export function orchestration(

src/util/testingUtils.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ import {
1414
HistoryEventOptions,
1515
Orchestrator,
1616
OrchestratorStartedEvent,
17+
OrchestratorState,
1718
} from "../classes";
1819
import { ReplaySchema } from "../replaySchema";
1920
import * as uuidv1 from "uuid/v1";

test/testobjects/TestOrchestrations.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import * as df from "../../src";
22
import { OrchestrationContext } from "durable-functions";
33
import { DurableHttpRequest } from "src/classes";
4-
import { createOrchestrator } from "../../src/testingUtils";
4+
import { createOrchestrator } from "../../src/util/testingUtils";
55

66
export class TestOrchestrations {
77
public static NotGenerator: any = createOrchestrator(function* () {

test/testobjects/testentities.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { createEntityFunction } from "../../src/testingUtils";
1+
import { createEntityFunction } from "../../src/util/testingUtils";
22

33
export class TestEntities {
44
public static StringStore = createEntityFunction<string>((context): void => {

0 commit comments

Comments
 (0)