From 92080abe0a097715ca8bd214a63c6049355bea1a Mon Sep 17 00:00:00 2001 From: richard-dds Date: Fri, 24 Aug 2018 15:26:38 -0400 Subject: [PATCH] Rename test to be more accurate --- tests/forms/test_validators.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/forms/test_validators.py b/tests/forms/test_validators.py index c57a603d..3f3dd978 100644 --- a/tests/forms/test_validators.py +++ b/tests/forms/test_validators.py @@ -63,7 +63,7 @@ class TestListItemsUnique: @pytest.mark.parametrize( "invalid", [["a", "a", "a"], ["one", "two", "two", "three"]] ) - def test_ListItemsUnique_rejects_non_letters( + def test_ListItemsUnique_rejects_duplicate_names( self, invalid, dummy_form, dummy_field ): validator = ListItemsUnique()