From e2eee0c2be7ae43ecde738b8a61b916a8bbfbd26 Mon Sep 17 00:00:00 2001 From: Nicolas Hug Date: Mon, 26 Jul 2021 08:59:13 +0100 Subject: [PATCH] remove testcase --- test/test_models_detection_anchor_utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/test_models_detection_anchor_utils.py b/test/test_models_detection_anchor_utils.py index 4477e9e1566..694ef315a1f 100644 --- a/test/test_models_detection_anchor_utils.py +++ b/test/test_models_detection_anchor_utils.py @@ -1,11 +1,11 @@ import torch -from common_utils import TestCase, assert_equal +from common_utils import assert_equal from torchvision.models.detection.anchor_utils import AnchorGenerator, DefaultBoxGenerator from torchvision.models.detection.image_list import ImageList import pytest -class Tester(TestCase): +class Tester: def test_incorrect_anchors(self): incorrect_sizes = ((2, 4, 8), (32, 8), ) incorrect_aspects = (0.5, 1.0)