Fixing stuff.

Signed-off-by: Cliff Hill <xlorep@darkhelm.org>
This commit is contained in:
2021-10-04 15:17:53 -04:00
parent 3755376c32
commit 5d17c30557
2 changed files with 9 additions and 5 deletions

View File

@@ -1,5 +1,6 @@
"""Tests for validating the Settings object."""
import pathlib
import random
import pytest
@@ -12,7 +13,7 @@ def example_settings() -> settings.Settings:
return settings.Settings(
creds=settings.CredentialSettings(
baseurl="http://nowhere.huh",
token="Fake Token", # noqa: S106
token=str(random.randint(0, 1000000)),
),
)