/ tests / utils / test_class_utils.py
test_class_utils.py
1  import mlflow
2  from mlflow.utils.class_utils import _get_class_from_string
3  
4  
5  def test_get_class_from_string():
6      assert _get_class_from_string("mlflow.MlflowClient") == mlflow.MlflowClient