Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kieftrav committed Jan 21, 2025
1 parent aa1f833 commit 6e27463
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ describe('Component > VolumetricViewer > ModelViewer', () => {
expect(model.planesAbsoluteSets).deep.to.equal([[], [], []])
expect(model.planeFrameActive).deep.to.equal([0, 0, 0])
expect(model.points).deep.to.equal([])
expect(model.threshold).deep.to.equal({ min: 0, max: 255 })
expect(model.threshold).deep.to.equal({ min: 5, max: 255 })
expect(model._listeners.length).to.equal(0)
})

Expand Down Expand Up @@ -69,7 +69,7 @@ describe('Component > VolumetricViewer > ModelViewer', () => {
expect(pointAnnotationIndex).to.equal(-1)
}

expect(model.threshold).deep.to.equal({ min: 0, max: 255 })
expect(model.threshold).deep.to.equal({ min: 5, max: 255 })
expect(model._listeners.length).to.equal(0)
})

Expand Down

0 comments on commit 6e27463

Please sign in to comment.