Skip to content

Commit

Permalink
Fix max recursion depth build issue (#2130)
Browse files Browse the repository at this point in the history
* sync remote

* fix deep recursions

* fix deep recursions

* fix deep recursions

* revert win test condition

* revert win test condition

* revert win test condition
  • Loading branch information
ravi-kumar-pilla authored Oct 10, 2024
1 parent 69caab4 commit e83fc62
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package/tests/test_models/test_flowchart.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from functools import partial
from pathlib import Path
from textwrap import dedent
from unittest.mock import Mock, call, patch
from unittest.mock import call, patch

import pytest
from kedro.io import MemoryDataset
Expand Down Expand Up @@ -232,7 +232,7 @@ def test_create_single_parameter_with_complex_type(self):
assert isinstance(parameters_node.parameter_value, str)

def test_create_all_parameters_with_complex_type(self):
mock_object = Mock()
mock_object = object()
parameters_dataset = MemoryDataset(
data={
"test_split_ratio": 0.3,
Expand Down

0 comments on commit e83fc62

Please sign in to comment.