Skip to content

Commit

Permalink
MAP-1363 lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Mjwillis committed Jun 27, 2024
1 parent 4d14146 commit 5f9ee45
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 10 deletions.
14 changes: 7 additions & 7 deletions spec/lib/nomis_client/rollcount_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@

it 'returns the correct data' do
expect(response.totals.symbolize_keys).to eq({
"bedsInUse": 53,
"currentlyInCell": 7,
"currentlyOut": 44,
"workingCapacity": 0,
"netVacancies": 0,
"outOfOrder": 0
})
bedsInUse: 53,
currentlyInCell: 7,
currentlyOut: 44,
workingCapacity: 0,
netVacancies: 0,
outOfOrder: 0,
})
end
end
end
Expand Down
4 changes: 1 addition & 3 deletions spec/services/populations/defaults_from_nomis_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,7 @@

let(:all_cells) do
{
'totals': {
'currentlyInCell': 8,
}
'totals': { 'currentlyInCell' => 8 },
}
end
let(:movements) { { 'in' => 10, 'out' => 5 } }
Expand Down

0 comments on commit 5f9ee45

Please sign in to comment.