fix indentation

This commit is contained in:
Paul Chavard 2021-03-09 12:12:28 +01:00
parent 70500e3d56
commit 00d7c3186a

View file

@ -853,15 +853,16 @@ describe Users::DossiersController, type: :controller do
context "with PDF output" do
let(:procedure) { create(:procedure) }
let(:dossier) {
create(:dossier,
:accepte,
:with_all_champs,
:with_motivation,
:with_commentaires,
procedure: procedure,
user: user)
}
let(:dossier) do
create(:dossier,
:accepte,
:with_all_champs,
:with_motivation,
:with_commentaires,
procedure: procedure,
user: user)
end
subject! { get(:show, params: { id: dossier.id, format: :pdf }) }
context 'when the dossier is a brouillon' do