Skip to content

Commit

Permalink
Change import in test
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicoretti committed Mar 12, 2024
1 parent 9fe216c commit b922636
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/unit/git_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

import pytest

from exasol.toolbox import git
import exasol.toolbox as toolbox


@pytest.fixture
Expand Down Expand Up @@ -47,6 +47,6 @@ def test_git_tags(git_tag):
]
)
with patch("subprocess.run", return_value=git_tag):
actual = sorted(git.tags())
actual = sorted(toolbox.git.tags())

assert expected == actual

0 comments on commit b922636

Please sign in to comment.