Skip to content

Commit

Permalink
move playwright to commons module
Browse files Browse the repository at this point in the history
  • Loading branch information
aktech committed Jul 26, 2023
1 parent 3816bdc commit c80e6a5
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 3 deletions.
Empty file added tests/common/__init__.py
Empty file.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import logging
from pathlib import Path

from navigator import Navigator
from tests.common.navigator import Navigator

logger = logging.getLogger()

Expand Down
2 changes: 1 addition & 1 deletion tests/tests_e2e/playwright/fixtures.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import dotenv
import pytest

from tests.tests_e2e.playwright.navigator import Navigator
from tests.common.navigator import Navigator

logger = logging.getLogger()

Expand Down
2 changes: 1 addition & 1 deletion tests/tests_e2e/playwright/test_playwright.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from run_notebook import Notebook
from tests.common.run_notebook import Notebook


def test_notebook(navigator, test_data_root):
Expand Down

0 comments on commit c80e6a5

Please sign in to comment.