Skip to content

Commit 39d6609

Browse files
fix size diff in CI
1 parent a3e45d7 commit 39d6609

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ddev/src/ddev/cli/size/diff.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ def diff_mode(
140140
dependencies = get_diff(dependencies_b, dependencies_a, "Dependency")
141141

142142
if integrations + dependencies == []:
143-
params["app"].display_error(
143+
params["app"].display(
144144
f"No size differences were detected between the selected commits for {params['platform']}"
145145
)
146146
return []
@@ -152,7 +152,7 @@ def diff_mode(
152152
module["Size"] = f"+{module['Size']}"
153153

154154
if not params["format"] or params["format"] == ["png"]: # if no format is provided for the data print the table
155-
print_table(params["app"], "Status", formatted_modules)
155+
print_table(params["app"], "Diff", formatted_modules)
156156

157157
treemap_path = None
158158
if params["format"] and "png" in params["format"]:

0 commit comments

Comments
 (0)