mirror of
https://github.com/sissbruecker/linkding.git
synced 2025-08-08 03:08:29 +02:00
Add black code formatter
This commit is contained in:
@@ -7,11 +7,11 @@ from bookmarks.models import UserProfile
|
||||
class UserProfileTestCase(TestCase):
|
||||
|
||||
def test_create_user_should_init_profile(self):
|
||||
user = User.objects.create_user('testuser', 'test@example.com', 'password123')
|
||||
user = User.objects.create_user("testuser", "test@example.com", "password123")
|
||||
profile = UserProfile.objects.all().filter(user_id=user.id).first()
|
||||
self.assertIsNotNone(profile)
|
||||
|
||||
def test_bookmark_sharing_is_disabled_by_default(self):
|
||||
user = User.objects.create_user('testuser', 'test@example.com', 'password123')
|
||||
user = User.objects.create_user("testuser", "test@example.com", "password123")
|
||||
profile = UserProfile.objects.all().filter(user_id=user.id).first()
|
||||
self.assertFalse(profile.enable_sharing)
|
||||
|
Reference in New Issue
Block a user