Files
sientia-dataops-model-manager/tests/sientia/test_exceptions.py
2026-07-16 13:29:23 -03:00

10 lines
269 B
Python

"""Unit tests for custom exception aliases."""
from mlflow.exceptions import MlflowException
from model_manager.sientia.exceptions import SientiaMlException
def test_sientia_ml_exception_is_mlflow_exception_alias():
assert SientiaMlException is MlflowException