Skip to content

Commit

Permalink
updated mini alignments test for updated pytest
Browse files Browse the repository at this point in the history
  • Loading branch information
KatyBrown committed May 13, 2024
1 parent dceb55a commit fadba67
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/miniAlignmentsTest.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def testDrawMiniAlignmentMarkUp(self):
simi = skimage.metrics.structural_similarity(expected,
mini_alignment,
channel_axis=-1,
data_range=(0, 1))
data_range=1)

self.assertTrue(simi > 0.95)

Expand Down Expand Up @@ -119,7 +119,7 @@ def testDrawMiniAlignment(self, input, expected, type, keep_numbers):
simi = skimage.metrics.structural_similarity(expected,
mini_alignment,
channel_axis=-1,
data_range=(0, 1))
data_range=1)
self.assertTrue(simi > 0.95)


Expand Down

0 comments on commit fadba67

Please sign in to comment.