diff --git a/spec/sentry_upload_dif_spec.rb b/spec/sentry_upload_dif_spec.rb index 2c8a211b..30707b4d 100644 --- a/spec/sentry_upload_dif_spec.rb +++ b/spec/sentry_upload_dif_spec.rb @@ -284,14 +284,13 @@ end").runner.execute(:test) end - it "dont includes --include_sources when false" do + it "dont include --include_sources when false" do expect(Fastlane::Helper::SentryConfig).to receive(:parse_api_params).and_return(true) expect(Fastlane::Helper::SentryHelper).to receive(:call_sentry_cli).with(anything, ["upload-dif", "fixture-path"]).and_return(true) Fastlane::FastFile.new.parse("lane :test do sentry_upload_dif( - path: 'fixture-path', - include_sources: false + path: 'fixture-path' ) end").runner.execute(:test) end