Renamed the Error page in the Website library target as NotFound.

This commit is contained in:
2026-08-01 23:06:22 +02:00
parent b680ae0689
commit 2c571233bc
4 changed files with 44 additions and 44 deletions
@@ -5,16 +5,16 @@ import Testing
@testable import WebsiteLibrary
@Suite(
"ErrorPage page",
"NotFoundPage page",
.tags(.page)
)
struct ErrorPageTests {
struct NotFoundPageTests {
// MARK: Functional tests
@Test
func `renders its markup`() {
let html = ErrorPage(
let html = NotFoundPage(
locale: .init(identifier: "en")
).render()