From 8c183333d1f6a8ca076b26a0b0696bf9f65a5c38 Mon Sep 17 00:00:00 2001 From: Mike <22396211+Dresdn@users.noreply.github.com> Date: Fri, 12 Aug 2022 14:24:47 -0700 Subject: [PATCH] chore: update text description --- tests/test_attributes.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_attributes.py b/tests/test_attributes.py index b7cf649..e6b8e74 100644 --- a/tests/test_attributes.py +++ b/tests/test_attributes.py @@ -5,7 +5,7 @@ from django.test import TestCase from hypothesis import given, settings from hypothesis import strategies as st from hypothesis.extra import django -from hypothesis.strategies import just, text +from hypothesis.strategies import just import eav from eav.exceptions import IllegalAssignmentException @@ -143,7 +143,7 @@ class TestAttributeModel(django.TestCase): ), ) def test_large_name_input(self, name_value) -> None: - """Ensure slug'ing works.""" + """Ensure proper slug is generated from large name fields.""" instance = Attribute.objects.create( name=name_value, datatype=Attribute.TYPE_TEXT,