Skip to content

Commit 135ca16

Browse files
committed
Fix incorrect WAGTAIL_SITE_NAME in settings. Add WAGTAILADMIN_BASE_URL in settings
1 parent 480c3b5 commit 135ca16

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1111
- Add CI testing for Django 5.2 (@nickmoreton)
1212

1313
### Fixed
14+
- Fix incorrect WAGTAIL_SITE_NAME in settings (@marteinn)
15+
- Add WAGTAILADMIN_BASE_URL in settings (@marteinn)
1416

1517
### Removed
1618
- Drop Wagtail testing for 5.0 (@nickmoreton)

tests/settings.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@
7474
TEMPLATE_DEBUG = DEBUG
7575
ROOT_URLCONF = "tests.urls"
7676

77-
WAGTAIL_SITE_NAME = ("Test Site",)
77+
WAGTAIL_SITE_NAME = "Test Site"
78+
WAGTAILADMIN_BASE_URL = "http://localhost:8000"
7879
SITE_ID = 1
7980
STATIC_URL = "/static/"

0 commit comments

Comments
 (0)