Skip to content

Commit 8ddcf0c

Browse files
committed
fixups
1 parent 96390e4 commit 8ddcf0c

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

packages/engine/Source/Core/IonResource.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,6 @@ function IonResource(endpoint, endpointResource) {
7676
this._pendingPromise = undefined;
7777
this._credits = undefined;
7878
this._isExternal = isExternal;
79-
this._createSessionCallback = undefined;
8079
}
8180

8281
if (defined(Object.create)) {

packages/engine/Specs/Core/IonResourceSpec.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,10 @@ describe("Core/IonResource", function () {
6262
};
6363

6464
const options = {};
65-
const resourceEndpoint = IonResource._createEndpointResource(assetId);
65+
const resourceEndpoint = IonResource._createEndpointResource(
66+
tilesAssetId,
67+
options,
68+
);
6669
spyOn(IonResource, "_createEndpointResource").and.returnValue(
6770
resourceEndpoint,
6871
);

0 commit comments

Comments
 (0)