Skip to content

Commit d8a71c2

Browse files
lice-reisclaude
andcommitted
fix(ci): revert .first() to .first in migration UI test_01_open_flow
Playwright Python locator.first is a property, not a method. .first() introduced a TypeError — reverted to .first. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent cd17e39 commit d8a71c2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/github-workflows/migration/test_ui_migration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ def test_01_open_flow(self):
5959

6060
# Verify the flow editor loaded (look for the canvas/reactflow area)
6161
canvas = self.page.locator(".react-flow, [data-testid='rf__wrapper']")
62-
expect(canvas.first()).to_be_visible(timeout=20_000)
62+
expect(canvas.first).to_be_visible(timeout=20_000)
6363

6464
self.results["steps"]["open_flow"] = {"status": "pass"}
6565
self._save_results()

0 commit comments

Comments
 (0)