diff --git a/tests/transforms/test_nvtx_decorator.py b/tests/transforms/test_nvtx_decorator.py index 74fdd5fa28..664d6c32c7 100644 --- a/tests/transforms/test_nvtx_decorator.py +++ b/tests/transforms/test_nvtx_decorator.py @@ -73,7 +73,7 @@ @unittest.skipUnless(has_nvtx, "Required torch._C._nvtx for NVTX Range!") class TestNVTXRangeDecorator(unittest.TestCase): @parameterized.expand([TEST_CASE_ARRAY_0, TEST_CASE_ARRAY_1]) - def test_tranform_array(self, input): + def test_transform_array(self, input): transforms = Compose([Range("random flip")(Flip()), Range()(ToTensor())]) # Apply transforms output = transforms(input)