Skip to content

Commit

Permalink
fix tests (fix import)
Browse files Browse the repository at this point in the history
  • Loading branch information
demitryfly committed Jun 14, 2024
1 parent 427cca6 commit afceb60
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_utils.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import pytest

import utils
from simple_ddl_parser import utils


@pytest.mark.parametrize(
Expand Down Expand Up @@ -28,7 +28,7 @@ def test_find_first_unpair_closed_par(expression, expected_result):
(["("], []),
([")"], []),
(["(", ")"], []),
(["(", ")"], []),
([")", "("], []),
(["(", "A"], ["A"]),
(["A", ")"], ["A"]),
(["(", "A", ")"], ["A"]),
Expand Down

0 comments on commit afceb60

Please sign in to comment.