From b366b26f19bc8fba09a5381f078a27a77f4558b8 Mon Sep 17 00:00:00 2001 From: Sebastiaan Janssen Date: Mon, 12 Dec 2022 15:48:36 +0100 Subject: [PATCH] Fix failing integration test (runtime mode was added to system info) --- .../tests/DefaultConfig/HelpPanel/systemInformation.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Umbraco.Tests.AcceptanceTest/tests/DefaultConfig/HelpPanel/systemInformation.spec.ts b/tests/Umbraco.Tests.AcceptanceTest/tests/DefaultConfig/HelpPanel/systemInformation.spec.ts index 9bdc85b37d..a202a60053 100644 --- a/tests/Umbraco.Tests.AcceptanceTest/tests/DefaultConfig/HelpPanel/systemInformation.spec.ts +++ b/tests/Umbraco.Tests.AcceptanceTest/tests/DefaultConfig/HelpPanel/systemInformation.spec.ts @@ -25,7 +25,7 @@ test.describe('System Information', () => { test('Check System Info Displays', async ({page, umbracoApi, umbracoUi}) => { await openSystemInformation(page, umbracoUi); - await expect(page.locator('.table').locator('tr')).toHaveCount(14); + await expect(page.locator('.table').locator('tr')).toHaveCount(15); await expect(await page.locator("tr", {hasText: "Current Culture"})).toContainText(enCulture); await expect(await page.locator("tr", {hasText: "Current UI Culture"})).toContainText(enCulture); });