diff --git a/packages/swingset-liveslots/tools/fakeVirtualSupport.js b/packages/swingset-liveslots/tools/fakeVirtualSupport.js index f1e1f0c805c..ecf2eea18fa 100644 --- a/packages/swingset-liveslots/tools/fakeVirtualSupport.js +++ b/packages/swingset-liveslots/tools/fakeVirtualSupport.js @@ -159,10 +159,12 @@ export function makeFakeLiveSlotsStuff(options = {}) { return exportID; } + // different starting point for more distinct IDs + let nextPromiseID = 7; function allocatePromiseID() { - const exportID = nextExportID; - nextExportID += 1; - return exportID; + const promiseID = nextPromiseID; + nextPromiseID += 1; + return promiseID; } let nextCollectionID = 1;