Skip to content

Commit

Permalink
Fix Regression Bug
Browse files Browse the repository at this point in the history
  • Loading branch information
beachtom committed Jan 9, 2024
1 parent dcac3f9 commit ba03814
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/regression/regression.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ async function CreateModelResuts(filename)
if (filename.includes(".ifczip")) {
let zip = new AdmZip(filename);
zip.getEntries().forEach(function (zipEntry) {
ifcdata = zipEntry.getData();
let ifcdata = zipEntry.getData();
modelID = ifcAPI.OpenModel(ifcdata);
});
} else {
Expand Down

0 comments on commit ba03814

Please sign in to comment.