From 009d45c7a195e7db787adc58e30def475e49e315 Mon Sep 17 00:00:00 2001 From: Julius Simonelli Date: Tue, 4 Jan 2022 13:11:13 -0800 Subject: [PATCH] Fix typo --- tests/test_metrics.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_metrics.py b/tests/test_metrics.py index 999f8fe5..dd90f0bc 100644 --- a/tests/test_metrics.py +++ b/tests/test_metrics.py @@ -133,7 +133,7 @@ def test_iou_metric(case): @pytest.mark.parametrize('case', IOU_CASES) -def test_jaccrad_loss(case): +def test_jaccard_loss(case): gt, pr, res = case gt = _to_4d(gt) pr = _to_4d(pr)