Skip to content

Commit 59c0fd6

Browse files
committed
Fix double assignment of PASSWORD_DEFAULT
1 parent e14a529 commit 59c0fd6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mergin/test/test_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
USER_PWD = os.environ.get("TEST_API_PASSWORD")
5757
API_USER2 = os.environ.get("TEST_API_USERNAME2")
5858
USER_PWD2 = os.environ.get("TEST_API_PASSWORD2")
59-
PASSWORD_DEFAULT = PASSWORD_DEFAULT = secrets.token_urlsafe(20)
59+
PASSWORD_DEFAULT = secrets.token_urlsafe(20)
6060
DEFAULT_OVERRIDES = {"projects": 100, "api_allowed": True}
6161
TMP_DIR = tempfile.gettempdir()
6262
TEST_DATA_DIR = os.path.join(os.path.dirname(os.path.realpath(__file__)), "test_data")

0 commit comments

Comments
 (0)