docs: be consistent with example domain (#2568)

This commit is contained in:
Jonas L 2023-05-26 15:00:34 +02:00 committed by GitHub
parent 17fb1c45df
commit e207b6e388
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 30 additions and 30 deletions

View file

@ -36,7 +36,7 @@ class FixtureConfig(BaseConfig):
FIXTURE_CONFIG_RAW = """
public_url: http://libretime.example.com/
public_url: http://libretime.example.org/
api_key: "f3bf04fc"
allowed_hosts:
- example.com
@ -81,7 +81,7 @@ def test_base_config(tmp_path: Path):
):
config = FixtureConfig(config_filepath)
assert config.public_url == "http://libretime.example.com"
assert config.public_url == "http://libretime.example.org"
assert config.api_key == "f3bf04fc"
assert config.allowed_hosts == ["example.com", "sub.example.com"]
assert config.database.host == "localhost"