Skip to content

Commit

Permalink
Rename variable to emptyData
Browse files Browse the repository at this point in the history
emptyData is a more accurate variable name for the datastore save data
  • Loading branch information
danieljbruce committed Aug 31, 2023
1 parent f7a6873 commit 3681c06
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions system-test/datastore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -710,10 +710,10 @@ describe('Datastore', () => {
};
});
// Save for a key so that a read time can be accessed for snapshot reads.
const dummyData = Object.assign(Object.assign({}, keysToSave[0]), {
const emptyData = Object.assign(Object.assign({}, keysToSave[0]), {
data: {},
});
await datastore.save(dummyData);
await datastore.save(emptyData);
timeBeforeDataCreation = await getReadTime([
{kind: 'Character', name: 'Rickard'},
]);
Expand Down

0 comments on commit 3681c06

Please sign in to comment.