[Cards] Change all instances of uuid to key
This commit is contained in:
@@ -59,8 +59,8 @@ def test_access_authorization_models():
|
||||
|
||||
def test_card_model():
|
||||
"""Test card model creation and validation."""
|
||||
card = Card(uuid="test-uuid", group_id=1)
|
||||
assert card.uuid == "test-uuid"
|
||||
card = Card(key="test-key", group_id=1)
|
||||
assert card.key == "test-key"
|
||||
assert card.group_id == 1
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user