Skip to content

Commit ae15243

Browse files
committed
Remove nil values from the action call
To use defaults instead of actually passing `nil` as a value
1 parent 071f985 commit ae15243

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

spec/android_send_app_size_metrics_spec.rb

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,12 +47,13 @@ def test_app_size_action(fake_aab_size:, fake_apks:, fake_universal_apk_sizes:,
4747
end
4848

4949
# Act
50-
code = run_described_fastlane_action(
50+
action_params = {
5151
api_url: File.join('file://localhost/', output_file),
5252
aab_path: aab_path,
5353
universal_apk_path: universal_apk_path,
5454
**other_action_args
55-
)
55+
}.compact
56+
code = run_described_fastlane_action(action_params)
5657

5758
# Asserts
5859
expect(code).to eq(201)

0 commit comments

Comments
 (0)