Skip to content

Commit f6b145f

Browse files
committed
Fixed unit test
1 parent f9e74d1 commit f6b145f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/unit/error_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ def builder(error_code):
123123
return actual_impl(error_code)
124124
raise Exception(f"{error_code}")
125125

126-
with patch("exasol.error.exa_error.ExaError") as mock:
126+
with patch("exasol.error._exa_error.ExaError") as mock:
127127
mock.message_builder = builder
128128
error = ExaError(data.code, data.message, data.mitigations, data.parameters)
129129
actual = str(error)

0 commit comments

Comments
 (0)