Skip to content

Commit 517af87

Browse files
AzureClient: Fix test issue (microsoft#24537)
In microsoft#24527 a test issue was identified in the AzureClient. The problem was the rename of a string, which shouldn't necessarily matter, but in this case the string is also hard coded in another file: [packages\service-clients\end-to-end-tests\azure-client\src\test\ephemeralSummaryTrees.ts](https://github.com/microsoft/FluidFramework/blob/main/packages/service-clients/end-to-end-tests/azure-client/src/test/ephemeralSummaryTrees.ts)
1 parent 85485ad commit 517af87

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/service-clients/end-to-end-tests/azure-client/src/test/TestDataObject.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class TestDataObjectClass extends DataObject {
2020
public static readonly Name = "@fluid-example/test-data-object";
2121

2222
public static readonly factory = new DataObjectFactory({
23-
type: "TestDataObject",
23+
type: TestDataObjectClass.Name,
2424
ctor: TestDataObjectClass,
2525
});
2626

0 commit comments

Comments
 (0)