Skip to content

Commit 16170e4

Browse files
committed
chore(VERSION): bump version to 0.5.4.dev4
1 parent 6f4b1f1 commit 16170e4

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.5.4.dev3
1+
0.5.4.dev4

lib/idp_common_pkg/tests/unit/bda/test_blueprint_optimizer.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -171,8 +171,8 @@ def test_creates_blueprint_with_correct_calls(
171171
def test_sanitize_called_before_transform(self, optimizer, mock_blueprint_service):
172172
"""Verify _sanitize_property_names is called before _transform."""
173173
call_order = []
174-
mock_blueprint_service._sanitize_property_names.side_effect = (
175-
lambda s: call_order.append("sanitize")
174+
mock_blueprint_service._sanitize_property_names.side_effect = lambda s: (
175+
call_order.append("sanitize")
176176
)
177177
mock_blueprint_service._transform_json_schema_to_bedrock_blueprint.side_effect = (
178178
lambda s: call_order.append("transform") or {"bda": "schema"}

0 commit comments

Comments
 (0)