Skip to content

Commit

Permalink
fix accidental spacing issue
Browse files Browse the repository at this point in the history
  • Loading branch information
yuenmichelle1 committed Aug 25, 2023
1 parent 87b22b9 commit 6c5c679
Showing 1 changed file with 8 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,8 @@
it_behaves_like 'returns 403 when authorization header is invalid' do
before(:each) {
get :query, params: { id: classification_user_group.user_group_id.to_s, individual_stats_breakdown: true }
expect(response.status).to eq(403) }
expect(response.status).to eq(403)
}
end
end

Expand Down Expand Up @@ -329,7 +330,8 @@
it_behaves_like 'returns 403 when authorization header is invalid' do
before(:each) {
get :query, params: { id: classification_user_group.user_group_id.to_s, individual_stats_breakdown: true }
expect(response.status).to eq(403) }
expect(response.status).to eq(403)
}
end
end

Expand Down Expand Up @@ -370,7 +372,8 @@
it_behaves_like 'returns 403 when authorization header is invalid' do
before(:each) {
get :query, params: { id: classification_user_group.user_group_id.to_s, individual_stats_breakdown: true }
expect(response.status).to eq(403) }
expect(response.status).to eq(403)
}
end
end

Expand Down Expand Up @@ -408,7 +411,8 @@
it_behaves_like 'returns 403 when authorization header is invalid' do
before(:each) {
get :query, params: { id: classification_user_group.user_group_id.to_s, individual_stats_breakdown: true }
expect(response.status).to eq(403) }
expect(response.status).to eq(403)
}
end
end

Expand Down

0 comments on commit 6c5c679

Please sign in to comment.