Skip to content

Commit eecf9fe

Browse files
fix
1 parent 4d33ae9 commit eecf9fe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/unit/version_test.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ def simulate_fail(args, **kwargs):
166166
assert f"release {version} already exists" in str(ex)
167167

168168

169-
@patch("exasol.toolbox.release.which", return_value=None)
169+
@patch("exasol.toolbox.version.which", return_value=None)
170170
def test_poetry_decorator_no_poetry_executable(mock):
171171
@poetry_command
172172
def test():
@@ -176,7 +176,7 @@ def test():
176176
test()
177177

178178

179-
@patch("exasol.toolbox.release.which", return_value="test/path")
179+
@patch("exasol.toolbox.version.which", return_value="test/path")
180180
def test_poetry_decorator_subprocess(mock):
181181
@poetry_command
182182
def test():

0 commit comments

Comments
 (0)