Skip to content

Commit

Permalink
avoid hard-coded angle
Browse files Browse the repository at this point in the history
  • Loading branch information
pmeier committed Jul 3, 2023
1 parent a3f55b1 commit ce7075c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test_transforms_v2_refactored.py
Original file line number Diff line number Diff line change
Expand Up @@ -1450,7 +1450,7 @@ def test_kernel_image_tensor(self, param, value, dtype, device):
def test_kernel_bounding_box(self, param, value, format, dtype, device):
kwargs = {param: value}
if param != "angle":
kwargs["angle"] = -10.9
kwargs["angle"] = self._MINIMAL_AFFINE_KWARGS["angle"]

bounding_box = make_input(datapoints.BoundingBox, dtype=dtype, device=device, format=format)

Expand Down

0 comments on commit ce7075c

Please sign in to comment.