Skip to content

Commit

Permalink
Fix bug in login functionality
Browse files Browse the repository at this point in the history
  • Loading branch information
sedghi committed Jan 19, 2024
1 parent ce4548d commit 7953d00
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions platform/app/cypress/integration/volume/MPR.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,9 @@ describe('OHIF MPR', () => {
const viewports = cornerstone.getRenderingEngines()[0].getViewports();

// The stack viewport still exists after the changes to viewportId and inde
const imageData1 = viewports[1].getImageData();
const imageData2 = viewports[2].getImageData();
const imageData3 = viewports[3].getImageData();
const imageData1 = viewports[0].getImageData();
const imageData2 = viewports[1].getImageData();
const imageData3 = viewports[2].getImageData();

// for some reason map doesn't work here
cy.wrap(imageData1).should('not.be', undefined);
Expand Down

0 comments on commit 7953d00

Please sign in to comment.