Skip to content

Commit dfe6e4c

Browse files
authored
Fix integration test in Owlv2 image processing tests (#42783)
Fix integration test
1 parent de055d6 commit dfe6e4c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/models/owlv2/test_image_processing_owlv2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ def test_image_processor_integration_test(self):
127127
pixel_values = processor(image, return_tensors="pt").pixel_values
128128

129129
mean_value = round(pixel_values.mean().item(), 4)
130-
self.assertEqual(mean_value, 0.2353)
130+
self.assertEqual(mean_value, -0.2303)
131131

132132
@slow
133133
def test_image_processor_integration_test_resize(self):

0 commit comments

Comments
 (0)