Skip to content

Commit

Permalink
improve error message in fakeVirtualSupport
Browse files Browse the repository at this point in the history
  • Loading branch information
warner committed Apr 5, 2023
1 parent bfad6c6 commit 050d844
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/swingset-liveslots/tools/fakeVirtualSupport.js
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ export function makeFakeLiveSlotsStuff(options = {}) {

function requiredValForSlot(slot) {
const val = getValForSlot(slot);
assert(val, `no value for ${slot}`);
assert(val, `${slot} must have a value`);
return val;
}

Expand Down

0 comments on commit 050d844

Please sign in to comment.