This is an automated email from the ASF dual-hosted git repository.
choo121600 pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new 7659c4303fc Fix E2E ConfigurationPage object file naming (#63861)
7659c4303fc is described below
commit 7659c4303fca46aaa549e2f4f742e678668dc02f
Author: Yeonguk Choo <[email protected]>
AuthorDate: Wed Mar 18 16:26:01 2026 +0900
Fix E2E ConfigurationPage object file naming (#63861)
---
.../ui/tests/e2e/pages/{configurationpage.ts => ConfigurationPage.ts} | 0
airflow-core/src/airflow/ui/tests/e2e/specs/configuration.spec.ts | 2 +-
2 files changed, 1 insertion(+), 1 deletion(-)
diff --git a/airflow-core/src/airflow/ui/tests/e2e/pages/configurationpage.ts
b/airflow-core/src/airflow/ui/tests/e2e/pages/ConfigurationPage.ts
similarity index 100%
rename from airflow-core/src/airflow/ui/tests/e2e/pages/configurationpage.ts
rename to airflow-core/src/airflow/ui/tests/e2e/pages/ConfigurationPage.ts
diff --git a/airflow-core/src/airflow/ui/tests/e2e/specs/configuration.spec.ts
b/airflow-core/src/airflow/ui/tests/e2e/specs/configuration.spec.ts
index d72a4083b66..9e521c0d37b 100644
--- a/airflow-core/src/airflow/ui/tests/e2e/specs/configuration.spec.ts
+++ b/airflow-core/src/airflow/ui/tests/e2e/specs/configuration.spec.ts
@@ -18,7 +18,7 @@
*/
import { expect, test } from "@playwright/test";
-import { ConfigurationPage } from "../pages/configurationpage";
+import { ConfigurationPage } from "../pages/ConfigurationPage";
test.describe("Configuration Page", () => {
let configPage: ConfigurationPage;